Hi,
There are several procedures in my DB which perform INSERT operation on one main table say - MYTAB.
I have created a trigger on MYTAB table to closely track which procedure is inserting data in it. Is there a function which captures this object name?
For eg: PROC_A, PROC_B, PROC_C insert into MYTAB table. And my query is - the trigger on MYTAB table should capture these object names from where the rows are getting inserted.
Please let me know for any suggestions..