Is there a way to list functions/procedures in a package?
Posted: Wed 22 Jul 2009 16:25
Is there a way to list functions/procedures in a package? or any pl/sql parser
Discussion forums for open issues and questions concerning database tools, data access components and developer tools from Devart
https://forums.devart.com/
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