LOG_EVENTS
The LOG_EVENTS system table exposes views of events produced by the server. Users see no rows unless they have the ACCESS_TOOLS and READ_ALL_STATUS rights.
|
Column |
TDV JDBC Data Type |
Nullable |
Description |
|
EVENT_ID |
BIGINT |
|
The unique ID for this event. |
|
PARENT_ID |
BIGINT |
|
The ID for the parent of this event. Same as the EVENT_ID if the event has no parent. |
|
TYPE_ID |
INTEGER |
|
The ID of the type of event that occurred. |
|
TYPE_NAME |
VARCHAR(24) |
|
A string name for the type of event that occurred. For example, START. |
|
CATEGORY |
VARCHAR(11) |
|
A string name for the category of event that occurred. For example, REQUEST. |
|
EVENT_TIME |
TIMESTAMP |
|
The time when the data was logged. |
|
SEVERITY |
VARCHAR(24) |
|
The severity of the event. |
|
OWNER_ID |
INTEGER |
|
The ID of the user who generated the event. |
|
OWNER |
VARCHAR(255) |
|
The name of the user who generated the event. |
|
DESCRIPTION |
VARCHAR(4000) |
|
The short description of the event. |
|
DETAIL |
VARCHAR(2147483647) |
|
The complete details of the event. |