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: retrieving package name

Re: retrieving package name

From: Rob <root_at_127.0.0.1>
Date: 2000/03/19
Message-ID: <8b3ssc$hj2$1@bob.news.rcn.net>#1/1

in sqlplus describe <schema>.package_name This will return all procedures and functions in a package.

If you want a list of all packages:

select object_name
from all_objects
where object_type = 'PACKAGE';

For just your packages
select object_name
from user_objects
where object_type = 'PACKAGE';

--
Robert P. Lockard
rob_at_oraclewizard.com
www.oraclewizard.com will be online soon.

<akkha_at_my-deja.com> wrote in message news:8aueud$9m4$1_at_nnrp1.deja.com...

> Hi,
>
> Is it possible to get the name of a stored package
>within the package itself?
>
> Thanks
>
> Anthony
>
>
> Sent via Deja.com http://www.deja.com/
> Before you buy.
Received on Sun Mar 19 2000 - 00:00:00 CST

Original text of this message

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