Jan 28 2010 06:26 AM 5831 2 Call Stored Procedure Dynamically papillon How do we call stored procedure dynamically? suneesece Profile Answers by suneesece Questions by suneesece May 19th, 2010 We can call using dynamic SQL, Execute Immediate. Answer Question Select Best Answer Feb 08 2007 05:48 AM 5966 16 How do you find which procedures are being used in database? Suman-Delhi suneesece Profile Answers by suneesece Questions by suneesece May 19th, 2010 Select * from all_objects where object_type= 'PROCEDURE'; Shafik Ismail Profile Answers by Shafik Ismail Questions by Shafik Ismail Feb 27th, 2010 I am not too sure if I understand our question properly. If you wanted to find all the stored procedures defined to the database with a CREATE PROCEDURE command (let's say DB2), then run a query from ... Answer Question Select Best Answer
Jan 28 2010 06:26 AM 5831 2 Call Stored Procedure Dynamically papillon How do we call stored procedure dynamically? suneesece Profile Answers by suneesece Questions by suneesece May 19th, 2010 We can call using dynamic SQL, Execute Immediate. Answer Question Select Best Answer
suneesece Profile Answers by suneesece Questions by suneesece May 19th, 2010 We can call using dynamic SQL, Execute Immediate.
Feb 08 2007 05:48 AM 5966 16 How do you find which procedures are being used in database? Suman-Delhi suneesece Profile Answers by suneesece Questions by suneesece May 19th, 2010 Select * from all_objects where object_type= 'PROCEDURE'; Shafik Ismail Profile Answers by Shafik Ismail Questions by Shafik Ismail Feb 27th, 2010 I am not too sure if I understand our question properly. If you wanted to find all the stored procedures defined to the database with a CREATE PROCEDURE command (let's say DB2), then run a query from ... Answer Question Select Best Answer
suneesece Profile Answers by suneesece Questions by suneesece May 19th, 2010 Select * from all_objects where object_type= 'PROCEDURE';
Shafik Ismail Profile Answers by Shafik Ismail Questions by Shafik Ismail Feb 27th, 2010 I am not too sure if I understand our question properly. If you wanted to find all the stored procedures defined to the database with a CREATE PROCEDURE command (let's say DB2), then run a query from ...