RE: How can i receive name of the running procedure

2002-01-25 Thread Aponte, Tony
Title: RE: How can i receive name of the running procedure Take a look at DBMS_UTILITY.FORMAT_CALL_STACK. You can parse out the caller from the return value. Here's a short example of an anonymous block: DECLARE stack_info VARCHAR2(4096); BEGIN stack_info:=DBMS_UTILITY.FORMAT_CALL_STACK

RE: How can i receive name of the running procedure

2002-01-25 Thread Jacques Kilchoer
Title: RE: How can i receive name of the running procedure -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] How can I select the name of the procedure, which is running.? I mean I am running a procedure and I want the name of the pocedure to be inserted