My tables:
parent (id number)
child (id number, parent_id number, allocation number)
So for every parent, there is set of three fixed records in child table. And, I need to put a validation block to restrict users from updating the allocation for any of the three children greater than 100% in child table (for any given parent_id).
I have added a trigger to check the allocation sum for a given parent_id, if it is greater than 100% then raise exception. However this leads to a mutating issue. Any design improvements/suggestions to overcome this issue or any alternatives to achieve this.
PS: The app intercepts the oracle exception, and translates it into red bar error message in the application; hence RAISE_APPLICATION_ERROR is must for error message display.
Edit 1:
The issue here is app layer, which allows edit on list screen. Multiple records could be updated in a single go hence the trigger on child table would get fired multiple times. In every trigger instance we also need to check the other children's allocation, which leads to mutating issue.
You cannot perform DML in triggers on the table for which the trigger is defined, you can see the result as mutating trigger error.
One alternative is to introduce another table, say sum_parent where you can maintain sum of allocation numbers for each parent id and inside the child table's trigger you can fetch data from this table(sum_parent), put the check in place and then update this table(sum_parent) with the new sum inside the trigger itself.