Describe the different types of triggers available in Oracle?

1 Answers
Answered by suresh

Types of triggers available in Oracle

In Oracle, there are three main types of triggers that you can use:

  1. Row-level triggers: These triggers are fired for each row that is affected by the triggering statement, such as an INSERT, UPDATE, or DELETE operation.
  2. Statement-level triggers: These triggers are fired once for each triggering statement, regardless of how many rows are affected by that statement.
  3. Before and after triggers: Triggers can be classified based on when they are fired - BEFORE triggers are fired before the triggering statement is executed, while AFTER triggers are fired after the triggering statement has been executed.

Each type of trigger serves a specific purpose in Oracle databases and can be useful for implementing various business logic and data integrity constraints.

Answer for Question: Describe the different types of triggers available in Oracle?