Hi,
I need to make a select from a row trigger on Insert from the same table. Is anybody knows how to avoid mutating in this case?
Thanks a lot!
Printable View
Hi,
I need to make a select from a row trigger on Insert from the same table. Is anybody knows how to avoid mutating in this case?
Thanks a lot!
The solution is to use two triggers: The row level trigger inserts the values into a plsql-table in a package, the statement level trigger then loops through and performs the selects that you need doing: tables are only mutating at row-level triggers.
Thank you!!!