Table: USER_TRIGGERS
Triggers owned by the user
| Column Name | Description |
|---|---|
| ACTION_TYPE | |
| BASE_OBJECT_TYPE | |
| COLUMN_NAME | The name of the column on which the trigger is defined over |
| DESCRIPTION | Trigger description, useful for re-creating trigger creation statement |
| REFERENCING_NAMES | Names used for referencing to OLD, NEW and PARENT values within the trigger |
| STATUS | If DISABLED then trigger will not fire |
| TABLE_NAME | Name of the table that this trigger is associated with |
| TABLE_OWNER | Owner of the table that this trigger is associated with |
| TRIGGERING_EVENT | Statement that will fire the trigger - INSERT, UPDATE and/or DELETE |
| TRIGGER_BODY | Action taken by this trigger when it fires |
| TRIGGER_NAME | Name of the trigger |
| TRIGGER_TYPE | Type of the trigger (when it fires) - BEFORE/AFTER and STATEMENT/ROW |
| WHEN_CLAUSE | WHEN clause must evaluate to true in order for triggering body to execute |