Hi
Is there a query to find all procedures name inside a package?
I tried with the following statement but it finds only procedures declared inside both Header/Body.
select *
from dba_procedures
where object_type = 'PACKAGE'
and object_name = 'xx'
Procedure declared only in the package body are not founded.
Thanks in advance.
Stefano