Oracle Apps Technical Question:
Download Questions PDF

What is instead of trigger in where we will use?

Answers:

Answer #1
We use instead of triggers, when dml operations perform on the complex views.

Answer #2
Instead of triggers are the procedures that execute in
place of Data Manipulation language (DML)statement on a
table.

for example, if i have INSTEAD-OF-UPDATE Trigger on
TableA,and i execute an update statement on that table,the
code in the INSTEAD-OF-TRIGGER will be executed instead of
the update statement that I executed.

Download Oracle Apps Technical Interview Questions And Answers PDF

Previous QuestionNext Question
There are set of records to be processed from staging table into interface table. If one record fails the entire set of data should be rejected?How to move the one file from one instance to another instance? And your scripts also?