Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to view a Stored procedure 2

Status
Not open for further replies.

iolaper

MIS
Jun 7, 2004
98
US
I'm using Oracle9i and I have created some stored procedures in them.
Can any of u tell me how to view the stored procedure?
Thanks in advance..
 
Tyr this:
Code:
SELECT TEXT FROM USER_SOURCE WHERE NAME='MY_PROCEDURE';




----------------------------------------------------------------------------
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
 
To be more precise:
Code:
SELECT TEXT FROM USER_SOURCE WHERE NAME='MY_PROCEDURE' AND TYPE='PROCEDURE' order by LINE;
[code]

Regards, Dima
[URL unfurl="true"]http://seminihin.narod.ru[/URL]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top