You create a DML trigger. For the timing information, which are valid with a DML trigger?
A.
DURING
B.
IN PLACE OF
C.
ON SHUTDOWN
D.
BEFORE
E.
ON STATEMENT EXECUTION
Explanation:
Trigger Timing determines whether the trigger will fire BEFORE or AFTER the DML statement on
the table. The BEFORE and AFTER timings are not valid for views. You can only create an
INSTEAD OF trigger on a view.
Incorrect Answers
A, B, C & E are not valid Oracle Events