query to find object dependencies in oracle

Solutions on MaxInterview for query to find object dependencies in oracle by the best coders in the world

showing results for - "query to find object dependencies in oracle"
Andrea
20 Jun 2020
1-- Dependencies on a view, table, ...
2SELECT *
3  FROM ALL_DEPENDENCIES			-- or DBA_DEPENDENCIES or USER_DEPENDENCIES
4 WHERE TYPE = 'VIEW'			-- or 'PROCEDURE', 'SYNONYM'...
5   AND REFERENCED_OWNER = 'OBJECT_OWNER'
6   AND REFERENCED_NAME = 'OBJECT_NAME';