Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Package functions and procedures

Re: Package functions and procedures

From: DA Morgan <damorgan_at_psoug.org>
Date: Tue, 23 Jan 2007 09:44:02 -0800
Message-ID: <1169574237.668354@bubbleator.drizzle.com>


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.org
Received on Tue Jan 23 2007 - 11:44:02 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US