Re: Viewing Package Body Source Code..,

From: Bryan Grenn <kp40.v922034_at_kodako.kodak.com>
Date: 1996/05/17
Message-ID: <4nhqi6$nlb_at_kodak.rdcs.Kodak.COM>#1/1


In article <tketchum-1605961341220001_at_tketchum.uoregon.edu>,

   tketchum_at_oregon.uoregon.edu (Tim T Ketchum) wrote:
>
>Is there any way to view the Package Body source code of a package you
>don't own? It appears that getting EXECUTE access isn't sufficient, yet
>it appears that that is the only grant privilege associated with packages.
>
>thx in advance,
>
>-tim
>

select owner,

        name,
        type,
        text
        from     sys.dba_source
        where    owner != 'SYS' 
         order by owner,
         name,
         type,
         line;
 

In the text you will find the body for packages.

Good Luck !!! Received on Fri May 17 1996 - 00:00:00 CEST

Original text of this message