Is it possible to retrieve the names of all procedures and functions that reside within a particular package? I understand that they can be gleaned (smells hack-ish) from the ALL_SOURCE view, but I would prefer a more canonical strategy.
|
1
|
|
||
|
|
|
|
DBA_PROCEDURES has the public methods within a package
If you also want private methods, that information is not directly accessible in the data dictionary. In that case, you'd need to parse the source (which would obviously be rather painful, particularly if you happen to have nested private methods within public or private methods in the package). |
||||
|
|
|
the following will return all procedure and function names from a specific package:
|
||
|
|
