Call a Procedure in Trigger

How to call a Procedure in Trigger and if any exception occurs in trigger then How do we rollback it?

Questions by sandeep.bawalia

Showing Answers 1 - 3 of 3 Answers

Ayaz Uddin

  • Nov 20th, 2014
 

create or replace trigger trg
after insert on emp
for each row
begin
myproc(:new.empno, :new.ename);
end;

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions