|
Re: New to Oracle:How do I download a package.proc [message #369944 is a reply to message #369936] |
Thu, 09 November 2000 05:03 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
Babu Paul
Messages: 38 Registered: November 2000
|
Member |
|
|
Hi!
Yes, you can. Please issue the following query. Perhaps you can spool the query result to a file so that you can view it later. Substitute the name of the file and package_name with your own filename and the name of your package
SET pagesize 1000 heading off
SPOOL filename
SELECT text FROM all_source WHERE
name=upper('PACKAGE_NAME') ;
SPOOL OFF
Mind if the package exists in so many schemas(more than one). You will get repeated text.
However you cannot view the package body if it is hidden.
Good Luck!
Babu Paul
|
|
|