Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: How to check owner of package
SELECT OWNER FROM SYS.ALL_OBJECTS WHERE OBJECT_TYPE = 'PACKAGE' AND OBJECT_NAME = 'your_package_name';
Cezariusz Marek <Cezariusz.Marek_at_comarch.pl> wrote in article
<33facb48.16897116_at_news.tpnet.pl>...
> Hi,
>
> How to check in package (at the runtime) who is the owner of it. The
> line:
>
> select user
> into v_usr
> from dual;
>
> gives me the user who executed package, not in who's schema it was
> created.
>
> Regards,
>
>
Received on Wed Aug 20 1997 - 00:00:00 CDT
![]() |
![]() |