Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: where are they - procedures
Select * from dba_source where type='PROCEDURE'
order by name, line ;
This will show all procedures in the system.
If you want to know if the procedures are valid/invalid,
select object_name, status from user_objects where object_type = 'PROCEDURE' ;
Linda
-----Original Message-----
From: Steff Gonos [mailto:steff_gonos_at_yahoo.com]
Sent: Monday, August 21, 2000 1:37 PM
To: Multiple recipients of list ORACLE-L
Subject: where are they - procedures
I am trying to find out where and how procedures are stored in the database. I am actually looking for the procedure name and the source code.
Where do I start ?
Thanks.
Steff Gonos
steff_gonos_at_yahoo.com
-- Author: Steff Gonos INET: steff_gonos_at_yahoo.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Mon Aug 21 2000 - 17:39:49 CDT