Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Generic code for looking at pl/sql stored procedure arguments
Say I have a procedure
create or replace procedure p
(p_string in varchar2 default null, p_date in date)
If I wanted to recrod the execution of this procedure I could simply write e.g.
l_call := 'p : p_string='||p_string|| ' : ' p_date='||p_date);
My question: is there a generic way of extcating the name of the procedure being run together with the arguments used to call it?
I suspect not......
Environment: 9iR2 / Solaris8
-- jeremyReceived on Mon Mar 21 2005 - 12:16:46 CST