RE: TRIGGER may not see it
Date: Fri, 11 Feb 2011 13:40:47 +0000
Message-ID: <853BE8E3785A554D92010F1FB6C0B279AE3E9BD4_at_LDNPCMMGMB11.INTRANET.BARCAPINT.COM>
You can't select from the table you're updating - not allowed.
Obviously triggers are evil, however, in terms of getting this working, I don't think you need to select from scadenziario, do you?
Would this not work?
CREATE OR REPLACE TRIGGER scadenziario_update_trigger
BEFORE UPDATE ON scadenziario FOR EACH ROW DECLARE motivo_sopralluogo sopralluogo.cod_motivo_sopralluogo%%type; BEGIN SELECT sopralluogo.cod_motivo_sopralluogo INTO motivo_sopralluogo FROM sopralluogo on :old.id_sopralluogo; IF motivo_sopralluogo = 'PRO' AND :new.id_piano IS NULL AND :old.id_piano IS NOT NULL THEN RAISE_APPLICATION_ERROR(-20000, 'error trigger 212'); END IF; END;
Cheers,
Dominic
-----Original Message-----
From: oracle-l-bounce_at_freelists.org [mailto:oracle-l-bounce_at_freelists.org] On Behalf Of jose soares
Sent: 11 February 2011 13:32
To: ORACLE-L
Subject: TRIGGER may not see it
Hi all,
I created a trigger in my db with no errors, like this one:
CREATE OR REPLACE TRIGGER scadenziario_update_trigger
BEFORE UPDATE ON scadenziario FOR EACH ROW DECLARE motivo_sopralluogo sopralluogo.cod_motivo_sopralluogo%%type; BEGIN SELECT sopralluogo.cod_motivo_sopralluogo INTO motivo_sopralluogo FROM scadenziario join sopralluogo on scadenziario.id_sopralluogo = sopralluogo.id WHERE scadenziario.id = :old.id ; IF motivo_sopralluogo = 'PRO' AND :new.id_piano IS NULL AND :old.id_piano IS NOT NULL THEN RAISE_APPLICATION_ERROR(-20000, 'error trigger 212'); END IF; END;
when I try this query:
UPDATE scadenziario
SET id_veterinario_programmato=637
WHERE id_unita_aziendale=36930
AND scadenziario.esito IS NULL AND id_piano=23 AND id_veterinario_programmato=321
it says:
cx_Oracle.DatabaseError: ORA-04091: table JOSE.SCADENZIARIO is mutating,
trigger/function may not see it
ORA-06512: at "JOSE.SCADENZIARIO_UPDATE_TRIGGER", line 4
ORA-04088: error during execution of trigger
'JOSE.SCADENZIARIO_UPDATE_TRIGGER'
I can't see what's wrong with it.
Could someone, please, get me some help?
Thank you in advance.
j
--
http://www.freelists.org/webpage/oracle-l
This e-mail may contain information that is confidential, privileged or otherwise protected from disclosure. If you are not an intended recipient of this e-mail, do not duplicate or redistribute it by any means. Please delete it and any attachments and notify the sender that you have received it in error. Unless specifically indicated, this e-mail is not an offer to buy or sell or a solicitation to buy or sell any securities, investment products or other financial product or service, an official confirmation of any transaction, or an official statement of Barclays. Any views or opinions presented are solely those of the author and do not necessarily represent those of Barclays. This e-mail is subject to terms available at the following link: www.barcap.com/emaildisclaimer. By messaging with Barclays you consent to the foregoing. Barclays Capital is the investment banking division of Barclays Bank PLC, a company registered in England (number 1026167) with its registered offic e at 1 Churchill Place, London, E14 5HP. This email may relate to or be sent from other members of the Barclays Group.
--
http://www.freelists.org/webpage/oracle-l Received on Fri Feb 11 2011 - 07:40:47 CST