v$session_wait_history

2023-08-18 09:26:34  Updated

Overview

v$session_wait_history displays the latest 10 wait events of all sessions on the current server.

gv$session_wait_history

Field description

Field name Type Nullable Description
SID BIGINT(20) No The ID of the session.
CON_ID BIGINT(20) No The ID of the tenant.
SEQ# BIGINT(20) No The sequence number of the wait event.
EVENT# BIGINT(20) No The number of the wait event.
EVENT varchar(64) No The description of the wait event.
P1TEXT varchar(64) No The name of the first parameter of the wait event.
P1 BIGINT(20) UNSIGNED No The value of the first parameter of the wait event.
P2TEXT varchar(64) No The name of the second parameter of the wait event.
P2 BIGINT(20) UNSIGNED No The value of the second parameter of the wait event.
P3TEXT varchar(64) No The name of the third parameter of the wait event.
P3 BIGINT(20) UNSIGNED No The value of the third parameter of the wait event.
WAIT_TIME_MICRO BIGINT(20) No The wait time of the wait event in microseconds.
TIME_SINCE_LAST_WAIT_MICRO BIGINT(20) No The amount of time in microseconds elapsed from the last wait to the current wait.
WAIT_TIME DOUBLE No The wait time of the wait event, in hundredths of a second.

Contact Us