Is it possible to write a PL/SQL query to identify a complete list of a stored procedures dependencies? I\'m only interested in identifying other stored procedures and I\'d
To get all details:
select * from all_dependencies where owner = '&OWNER' and NAME='&OBJECT_NAME'