Reporting station with the following dependency
Published: Dec 3, 2025 - 08:08
Good morning,
I managed to build the report below so that it returns all the packages that depend on the package PACK-XXX :
However, I am unable to build the reporting so that for a PACKET-YYY the reporting returns all the machines on which the package has been added as a dependency.
If you have any ideas for the construction, I'm all ears.
Thank you so much.
Pierre-Alexis DEQUIDT
I managed to build the report below so that it returns all the packages that depend on the package PACK-XXX :
Code: Select all
SELECT DISTINCT
p.package
FROM
packages p,
unnest(p.depends) AS dep
WHERE
dep ILIKE '%%PAQUET-XXX%%';If you have any ideas for the construction, I'm all ears.
Thank you so much.
Pierre-Alexis DEQUIDT