SYSEVENTTYPE system table

CREATE TABLE SYS.SYSEVENTTYPE (
	event_type_id		 INT NOT NULL,
	name	 VARHCAR(128) NOT NULL UNIQUE,
	description	 LONG VARCHAR NULL,
	PRIMARY KEY ( event_type_id )
)

Each row in the SYSEVENTTYPE table describes a system event type which can be referenced by CREATE EVENT.

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.