Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Procedure/functions in Packages, Need more information
"Salto" <Salto_at_uswest.net> wrote in message
news:3BF19C05.D565D191_at_uswest.net...
> What SQL statement would I use to determine what functions
> and
> procedures exist for packages in all_objects and if they are
> functions
> or procedures.
>
> all_variables tells me what variables exist for a function
> or procedure
> but I do not know if I have a function or procedure.
SELECT OBJECT_NAME, OBJECT_TYPE
FROM DBA_OBJECTS
WHERE OBJECT_NAME = 'FOO'
(replace FOO with your stored program unit name of course...and it assumes you
have permissions to see dba_objects)
-Matt Received on Tue Nov 13 2001 - 23:14:10 CST
![]() |
![]() |