Oct 21, 2004 #1 2314 Programmer May 19, 2001 69 IN Hi how can i see the text of my stored procedure in oracle in sql server i use sp_help but it does not work in oracle
Hi how can i see the text of my stored procedure in oracle in sql server i use sp_help but it does not work in oracle
Oct 21, 2004 #2 HimanB IS-IT--Management Nov 25, 2002 231 IN Hi, You can get your Stored Procedure & Functions's Text from view USER_SOURCE or DBA_SOURCE or ALL_SOURCE. Code: Select Text from user_source where NAME ='MY_PROC'; HTH Regards Himanshu Upvote 0 Downvote
Hi, You can get your Stored Procedure & Functions's Text from view USER_SOURCE or DBA_SOURCE or ALL_SOURCE. Code: Select Text from user_source where NAME ='MY_PROC'; HTH Regards Himanshu
Oct 24, 2004 #3 khobar IS-IT--Management Sep 24, 2002 38 IN Hi I beleive sp_help can also be used on tables to describe the columns. For procuedures use all_source For table just desc <tname> in sqlplus khobar Upvote 0 Downvote
Hi I beleive sp_help can also be used on tables to describe the columns. For procuedures use all_source For table just desc <tname> in sqlplus khobar