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

Home -> Community -> Usenet -> c.d.o.misc -> Re: SQL Stored procedures - find all within a database

Re: SQL Stored procedures - find all within a database

From: Thomas Kellerer <spam_eater_at_gmx.net>
Date: Mon, 28 Jul 2003 19:52:54 +0200
Message-ID: <bg3ntm$11c$1@svr8.m-online.net>


Arj schrieb:

> Can someone give me an sql statement to find all the stored procedures
> within a database.
>
> Thanks,
> Arj

select owner, object_name, object_type
from sys.all_objects
where object_type in ('PROCEDURE', 'FUNCTION') and owner = user Received on Mon Jul 28 2003 - 12:52:54 CDT

Original text of this message

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