A trigger is an object that initiates an action when an UPDATE, DELETE, or INSERT operation is run against a table. The action is called a triggered action and the operation is called a trigger event.
Triggered actions can perform such tasks as:
For example, suppose that each row in table EMPLOYEE contains information about an employee of a company, and that a column in table COMPANY_STATS contains a value denoting the number of employees in the company. You can specify a triggered action that increases this value by 1 whenever a row of information about a new employee is inserted into EMPLOYEE.
The following links provide additional information on triggers:
[ Top of Page | Table of Contents | Glossary | Index ]