aspose file tools
The moose likes JDBC and the fly likes Please help...triggers issue Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "Please help...triggers issue" Watch "Please help...triggers issue" New topic
Author

Please help...triggers issue

Aman Gupta
Greenhorn

Joined: Nov 12, 2008
Posts: 10
Hi,
I have a requirement of a trigger which will trim the value of column CAA_NAME as soon as this column is updated.
I hv written the foll trigger to achieve the same.

But after the trigger is configured and i try to update caa_name column, I'm getting -

ora-04091: table caa_ca is mutating,trigger-function may not see it
ora-06512: at "TRIMCAACC4_MAIN", line 2
ora-04088: error during execution of trigger


Please Help.



CREATE OR REPLACE TRIGGER TRIMCAACC4_MAIN
AFTER UPDATE OF
CAA_NAME
ON
CAA_CA
REFERENCING NEW AS NEW
FOR EACH ROW
BEGIN
UPDATE CAA_CA SET
CAA_NAME = TRIM(:NEW.CAA_NAME)
WHERE CAA_CA_ID=:NEW.CAA_CA_ID ;

END;
Scott Selikoff
Saloon Keeper

Joined: Oct 23, 2005
Posts: 3652

Read this: http://asktom.oracle.com/tkyte/Mutate/


My Blog: Down Home Country Coding with Scott Selikoff
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Please help...triggers issue
 
Similar Threads
modifing data when Trigger fires
help required in writing row level trigger?
Please help..triggers issue
getting error while droping the user in oracle.
using :new in oracle JDBC Query