I've tried in many ways to create a trigger to update a field after this field is updated on other register. Always fail.
When I use FOR EACH ROW
I get the mutating table error. And when I try to update directly, I don't know how to reference the new value.
Each person can have more than one address, but only one default. So when the person marks one specific address to be the default, the others must be Zero.
CREATE OR REPLACE TRIGGER trg_aiur_default_address
BEFORE UPDATE ON address FOR EACH ROW
BEGIN
UPDATE address SET default_address = 0
WHERE person_id = :NEW.id;
END;
/
ORA-04091: table person is mutating, trigger/function may not see it
CREATE OR REPLACE TRIGGER trg_aiur_default_address
BEFORE UPDATE ON address
BEGIN
UPDATE address SET default_address = 0
WHERE person_id = :NEW.id;
END;
/
ORA-04082: NEW or OLD references not allowed in table level triggers
It is just
(you can't name the column
default
, it is reserved)As you commented that it won't work as you'll "update the whole table", well - that's nonsense. Have a look.
After you (finally) made up your mind and told us that there can be multiple addresses for each person, then I'd suggest a compound trigger which "fixes" the mutating table error.
From my point of view, you should have two tables -
person
(master) andaddress
(detail; contains all addresses for each person; it has a foreign key that points to theperson
table).The compound trigger:
Testing: my current default address is in London; I'll change it to Berlin.