Oracle Discussion Forums
Welcome, Guest. Please login or register.
September 07, 2010
Home Help Search Login Register
News:


+  WebForums - OraclePassport
|-+  IT progamming - Oracle, Java, Unix, MySQL, Toad
| |-+  Oracle Basics
| | |-+  Finding the list of procedures ....
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: [1] Go Down Send this topic Print
Author Topic: Finding the list of procedures ....  (Read 353 times)
dearcyril
Developer
***

Appreciate? +1/-0
Offline Offline

Posts: 35

Welcome!

« on: May 31, 2010 »

Hi
How to find the list of procedures/function which come under a package created by a particular user


Thanks
 Cyril
Report to moderator   Logged
sibanjan
Trainer
****

Appreciate? +6/-0
Offline Offline

Posts: 50


Welcome!

« Reply #1 on: June 01, 2010 »

Hi cynil,
   There are two ways by which we can find out the list according my knowledge.

1st one is by querying all_source data dictionary.

select * from all_source
where owner='HR'
and type='PACKAGE'

2nd  one is by querying all_procedures data dictionary.

select * from all_procedures
where upper(owner)='HR'
and upper(OBJECT_NAME)='xxcustompackage'
Report to moderator   Logged
Pages: [1] Go Up Send this topic Print 
« previous next »
 
Share this topic...
In a forum
(BBCode)
In a site/blog
(HTML)



Login with username, password and session length

Powered by MySQL Powered by PHP Powered by SMF 2.0 RC1.2 | SMF © 2006–2009, Simple Machines LLC Valid XHTML 1.0! Valid CSS!
Page created in 0.727 seconds with 27 queries.