Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Package functions and procedures
schw wrote:
> Hi
>
> is there any way to check whether particular function or procedure
> exists in a package?
>
> thanks
> schw
Assuming the function or procedure is not private to the package, meaning not declared in the header.
desc <package_name>
which will give you a lot of information you may not need.
I would go for:
SELECT DISTINCT object_name
FROM all_arguments
WHERE package_name = '<package_name>';
-- Daniel A. Morgan University of Washington damorgan_at_x.washington.edu (replace x with u to respond) Puget Sound Oracle Users Group www.psoug.orgReceived on Tue Jan 23 2007 - 11:44:02 CST