I have a problem with a mutating table in Oracle. I have two tables, Customer and Person. I must update ChangeDate in Customer during modification of a Person row, so I created a trigger. Unfortunately there is a trigger on Customer which updates Person in some cases and that is causing a mutating table problem. Fortunately I don't have to update Customer.ChangeDate when updating Person if this change was caused by a Customer change.
So here is my question: how can I recognize that the Person trigger was fired by the Customer trigger?
customerhas to updatepersoninclude the case where only thechangedateis modified, as seems to be the case whenpersonis updated directly? Might be helpful to post the code for both triggers and the structure of both tables. – Alex Poole Feb 17 at 12:17changedateis modified thenpersonis not updating. – Sławek Feb 17 at 13:55