InterviewSolution
| 1. |
What Is The Advantage To Use Trigger In Your Pl? |
|
Answer» A trigger is a database object directly associated with a particular table. It fires whenever a specific statement/type of statement is issued against that table. The types of statements are insert,update,delete and query statements. Basically, trigger is a set of SQL statements A trigger is a solution to the restrictions of a constraint. For INSTANCE:
Triggers are fired implicitly on the tables/views on which they are created. There are VARIOUS advantages of using a trigger. Some of them are:
A trigger is a database object directly associated with a particular table. It fires whenever a specific statement/type of statement is issued against that table. The types of statements are insert,update,delete and query statements. Basically, trigger is a set of SQL statements A trigger is a solution to the restrictions of a constraint. For instance: Triggers are fired implicitly on the tables/views on which they are created. There are various advantages of using a trigger. Some of them are: |
|