RDB$TRIGGERS
RDB$TRIGGERS
stores the trigger definitions for all tables and views.
Column Name | Data Type | Description |
---|---|---|
|
|
Trigger name |
|
|
The name of the table or view the trigger applies to.NULL if the trigger is applicable to a database event (“database trigger”) |
|
|
Position of this trigger in the sequence.Zero usually means that no sequence position is specified |
|
|
The event the trigger fires on, see [fblangref-appx04-triggers-type] |
|
|
Stores the source code of the trigger in PSQL |
|
|
The binary language representation (BLR) of the trigger code (PSQL trigger only) |
|
|
Trigger comment text |
|
|
Indicates whether the trigger is currently inactive (1) or active (0) |
|
|
Flag: indicates whether the trigger is user-defined (value 0) or system-defined (value 1 or greater) |
|
|
Internal use |
|
|
Indicates whether the text of the trigger remains valid after the latest modification by the |
|
|
Contains debugging information about variables used in the trigger |
|
|
Engine for external triggers. |
|
|
The exported name of the external trigger in the trigger library.Note, this is often not the same as |
|
|
The
|