Re: How to get the list of variables and constants declared in a Oracle Package?

From: Anna C. Dent <anacedent_at_hotmail.com>
Date: Wed, 09 Jul 2003 17:24:12 -0700
Message-ID: <Nm2Pa.1040$_s.763_at_fed1read03>


vgadge wrote:
> Hi John,
>
> Thanks for the reply. I know this way of geting the list. But to get the
> list from dba_source table, I have to do the string manipulation which
> is not very reliable way. I wanted it in such a way like some SQL
> editors provide us. Just by entering the Procedure or Package name and
> entering dot next it, it gives us the list of variable declared in the
> procedure.
>
> Regards
>
> Vivek
>
> Originally posted by John Kee
>

>>The only way I know of, Vivek, is to query the following:
>>
>>select text from dba_source where owner=&Owner and name=&Pkg and
>>type='PACKAGE' order by line;
>>
>>hth,
>>John Kee

>
>
> --
> Posted via http://dbforums.com

  With 9i just do
SQL> DESC <PACKAGE_NAME> Received on Thu Jul 10 2003 - 02:24:12 CEST

Original text of this message