Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Resolving strings to actual objects
Rene Nyffenegger wrote:
> On 2005-09-06, DA Morgan <damorgan_at_psoug.org> wrote: >
> > > Thanks for the suggestion. > > I did some searching and using > > select object_name, procedure_name > from dba_procedures > where procedure_name like '%RESOLVE%'; > > I got > > OBJECT_NAME PROCEDURE_NAME > ------------------------------ ------------------------------ > DBMS_UTILITY NAME_RESOLVE > > which _seems_ to be what I needed. > I still have to verify my assumption, though. > > Rene
Also look at this:
SELECT object_name
FROM all_arguments
WHERE package_name =
Too if it might apply.
-- Daniel A. Morgan http://www.psoug.org damorgan_at_x.washington.edu (replace x with u to respond)Received on Tue Sep 06 2005 - 19:50:08 CDT
![]() |
![]() |