What are the types of triggers ?
Answer Posted / sarat
There are 4 types of Triggers
# Row Triggers and Statement Triggers
# BEFORE and AFTER Triggers
# INSTEAD OF Triggers
# Triggers on System Events and User Events
A row trigger is fired each time the table is affected by
the triggering statement. A statement trigger is fired once
on behalf of the triggering statement.
BEFORE triggers run the trigger action before the triggering
statement is run. AFTER triggers run the trigger action
after the triggering statement is run.
INSTEAD OF triggers provide a transparent way of modifying
views that cannot be modified directly through DML
statements (INSERT, UPDATE, and DELETE).
| Is This Answer Correct ? | 14 Yes | 6 No |
Post New Answer View All Answers
How to set up sql*plus output format in oracle?
What is over () in sql?
Is there a way to automate sql execution from the command-line, batch job or shell script?
What is case function?
Who developed sql?
Are views faster than queries?
Why coalesce is used in sql?
What is pl sql block in dbms?
Is not equal in sql?
What does the hierarchical profiler does?
What is the least restrictive isolation level? : Transact sql
How do I kill a query in postgresql?
How do we use distinct statement? What is its use?
How many sectors are in a partition?
What's the difference between a primary key and a clustered index?