adspace
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
Can delete statement be rollbacked?
Can we use distinct and group by together?
what is bcp? When does it used? : Sql dba
define sql insert statement ? : Sql dba
what are the advantages of sql ? : Sql dba
Do we need to rebuild index after truncate?
What is the best sql course?
If a cursor is open, how can we find in a pl/sql block?
how to escape special characters in sql statements? : Sql dba
what is dbms? : Sql dba
Does group by remove duplicates?
how to start mysql server? : Sql dba
Is primary key clustered index?
how many tables will create when we create table, what are they? : Sql dba
Is inner join faster than left join?