Overview
v$session_wait displays detailed information about the current wait events in each session. Each wait event has three parameters.
Related tables/views
gv$session_wait
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. |
| 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_CLASS_ID | BIGINT(20) | No | The ID of the class to which the wait event belongs. |
| WAIT_CLASS# | BIGINT(20) | No | The subscript of the class to which the wait event belongs. |
| WAIT_CLASS | varchar(64) | No | The name of the class to which the wait event belongs. |
| STATE | varchar(19) | No | The state of the wait event. |
| WAIT_TIME_MICRO | BIGINT(20) | No | The wait time of the wait event in microseconds. |
| TIME_REMAINING_MICRO | BIGINT(20) | No | The time remaining in microseconds before the wait event times out. |
| TIME_SINCE_LAST_WAIT_MICRO | BIGINT(20) | No | The amount of time in microseconds elapsed from the last wait to the current wait. |