which will fire first ? Trigger or Constraint
Answer Posted / lakkireddy ashok
Always trigger will fire first
eg:create table T_CHK (a number check (A < 99));
INSERT INTO T_CHK VALUES(101);
ORA-02290: check constraint (APPS.SYS_C00207769) violated
if u create trigger
CREATE TRIGGER CHKT BEFORE INSERT ON T_CHK
FOR EACH ROW
BEGIN
IF :NEW.A >100 THEN
RAISE_APPLICATION_ERROR(-20011,'VALUES SHOULD BE < 100');
END IF;
END;
INSERT INTO T_CHK VALUES(101);
ORA-20011: VALUES SHOULD BE < 100
ORA-06512: at "APPS.CHKT", line 3
ORA-04088: error during execution of trigger 'APPS.CHKT'
if u don't create trigger then constraint will be first otherwise if u create trigger to the same table with same DML operations here trigger will fire first instead of constraint firing
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between an inner and outer join?
Will truncate release space?
What are analytic functions in sql?
Explain the difference between sql and mysql.
What language is oracle sql developer?
What are the methods of filing?
Explian rowid, rownum?
What is the cause of mutating table error and how can we solve it?
Write the alter statement to enable all the triggers on the t.students table.
What is a trigger in sql?
What are the advantages of normalization?
Is pl sql a programming language?
What are the query optimization techniques?
What is a design view?
What is the process of debugging?