What is a trigger ?

Answer Posted / shaikkhalandar407@gmail.com

Triggers are stored programs that are fired automatically when some events occur. The code to be fired can be defined as per the requirement.

Oracle has also provided the facility to mention the event upon which the trigger needs to be fire and the timing of the execution

Benefits of Triggers :
Generating some derived column values automatically
Enforcing referential integrity
Event logging and storing information on table access
Auditing
Synchronous replication of tables
Imposing security authorizations
Preventing invalid transactions
Types of Triggers in Oracle
Triggers can be classified based on the following parameters.

Classification based on the timing
BEFORE Trigger: It fires before the specified event has occurred.
AFTER Trigger: It fires after the specified event has occurred.
INSTEAD OF Trigger: A special type. You will learn more about the further topics. (only for DML )
Classification based on the level
STATEMENT level Trigger: It fires one time for the specified event statement.
ROW level Trigger: It fires for each record that got affected in the specified event. (only for DML)
Classification based on the Event
DML Trigger: It fires when the DML event is specified (INSERT/UPDATE/DELETE)
DDL Trigger: It fires when the DDL event is specified (CREATE/ALTER)
DATABASE Trigger: It fires when the database event is specified (LOGON/LOGOFF/STARTUP/SHUTDOWN)

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are pl/sql packages?

575


What are hotfixes and patches?

533


what is csv? : Sql dba

581


Which join is like inner join?

568


Is not null in sql?

562






What are the sql commands?

615


what are sequences

1100


what is the difference between clustered and non clustered index in sql? : Sql dba

556


How do you bind variables in pl sql?

584


what is table? : Sql dba

576


What is trigger explain with example?

556


How do I enable sql encryption?

522


What are the different parts of a package?

635


How do I get sql certification?

533


Why do we use function in pl sql?

563