Is there a way to list functions/procedures in a package?
Is there a way to list functions/procedures in a package?
Is there a way to list functions/procedures in a package? or any pl/sql parser
Try the following select:
This will work only with the public procedures. Not the internal procedures.
Kind regards
Jens
Code: Select all
select DECODE (MIN(POSITION),
1, 'PROCEDURE',
0, 'FUNCTION', NULL) TYPE,
object_name
from all_arguments
where owner = :owner
and package_name = :package_name
group by package_name, object_name
Kind regards
Jens