Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Listing all Stored Procedure in database
vicnjowusi_at_hotmail.com (Egbon) wrote in message news:<372e7dae.0307110827.585d7be1_at_posting.google.com>...
> Hi,
>
> What command can I use to list all the Stored Procedures in Oracle
> database. I am new to Oracle.
>
> Thanks.
>
> Egbon
1 select object_name
2 from dba_objects
3* where object_type = 'PROCEDURE'
Received on Fri Jul 11 2003 - 16:17:52 CDT
![]() |
![]() |