The SYSEVENTTYPE system view defines the system event types that can be referenced by CREATE EVENT. The underlying system table for this view is ISYSEVENTTYPE.
Column name | Column type | Column constraint |
---|---|---|
event_type_id | UNSIGNED INT | NOT NULL |
name | VARCHAR(128) | NOT NULL |
description | LONG VARCHAR |
event_type_id The unique number assigned to each event type.
name The name of the system event type.
description A description of the system event type.
PRIMARY KEY (event_type_id)
UNIQUE (name)