How can you see the source code of the package

Showing Answers 1 - 7 of 7 Answers

B.Vijay Karthik

  • Jul 4th, 2005
 

Query user_source.text view for package,procedure,function source code

  Was this answer useful?  Yes

Rakesh Gautam

  • Jul 5th, 2005
 

select text from dba_source where type='PACKAGE' and name=' '; 

  Was this answer useful?  Yes

Leon Parren

  • Aug 29th, 2005
 

This only works if the package is not wrapped. The source code of

  Was this answer useful?  Yes

Sravan Anumala

  • Sep 24th, 2005
 

source code of package resides in TEXT VARCHAR2(4000) column in the USER_SOURCE Data Dictionary Table

  Was this answer useful?  Yes

narasimha reddy

  • May 20th, 2006
 

SELECT TEXT FROM USER_SOURCE/ALL_SOURCE/DBA_SOURCE

WHERE

NARASIMHA REDDY

  • May 20th, 2006
 

SELECT TEXT FROM USER_SOURCE/ALL_SOURCE/DBA_SOURCE

WHERE NAME=<NAME OF THE PACKAGE> AND TYPE='PACKAGE';

HERE THE TYPE MAY BE PACKAGE,PROCEDURE,....

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions