The mutating-table tag has no wiki summary.
4
votes
8answers
994 views
Oracle triggers - problem with mutating tables
My tables:
TableA (id number, state number)
TableB (id number, tableAId number, state number)
TableC (id number, tableBId number, state number)
So items in TableC are TableB's children and items in ...
2
votes
1answer
368 views
ORACLE After update trigger: solving ORA-04091 mutating table error
I am trying to create a trigger:
create or replace trigger NAME_OF_TRIGGER
after insert or update on table1
REFERENCING OLD AS OLD NEW AS NEW
for each row
to fill in automatically a couple ...
1
vote
3answers
193 views
INSERT trigger for inserting record in same table
I have a trigger that is fire on inserting a new record in table in that i want to insert new record in the same table.
My trigger is :
create or replace trigger inst_table
after insert on ...
1
vote
3answers
95 views
How to prevent a derived value (SUM) from being manually updated to an incorrect value
I am learning SQL and DB design for a college class. One assignment that was given to us is to create a table with a derived attribute which is the SUM of some child attributes. For example:
ORDERS
...
1
vote
2answers
151 views
How to fire trigger after every insert - Oracle (Bulk insert)
i want the trigger to run after each and every record that gets inserted.
This validation works fine if i have a simple insert like this :
insert into g_dossier values
(112334, 'BBT', ...
0
votes
3answers
42 views
Clashing triggers - mutating table
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. ...
0
votes
2answers
282 views
Simple oracle triggers
Simple one. I´m a bit of a newvbie with PLSql and oracle's error messages are never too helpful.
I want to do a simple trigger to update a column with the current date i.e. 'modified date' column of ...