What is mutation of a trigger? When and why it occurs?
Posted by silpa on Sep 11 2007
Mutation of a trigger
A table is said to be mutating table when you are trying to update,delete,insert into a table/view through a trigger and at the same time trying to select the same table/view
It occurs when trying to update,delete insert into the parent table and doing a select on the child table
Leave a Comment