Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Binary_code Oracle?

Re: Binary_code Oracle?

From: Billy Verreynne <vslabs_at_onwe.co.za>
Date: Fri, 17 Jan 2003 12:22:37 +0000
Message-ID: <b08lh8$lhd$1@ctb-nnrp2.saix.net>


akelavlk wrote:

> I change my question. How can I see binary code of PL/SQL language in
> ORACLE database? Is it somewhere in system table or in file?

SELECT
  text
FROM all_source
WHERE owner = '<insert name>'
AND name = '<name of PL/SQL unit>'
AND TYPE = '<type of PL/SQL unit>'
ORDER BY line

The TYPE can be something like:

- 'FUNCTION'
- 'PROCEDURE'
- 'PACKAGE' 
- 'PACKAGE BODY' 


--
Billy
Received on Fri Jan 17 2003 - 06:22:37 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US