Table Columns
|
Name |
Type |
Description |
|
instance_id |
INTEGER |
Server instance this session is connected to. References sysinstances (id) |
|
id |
BIGINT |
Unique session id, unique within cluster |
|
exec_state |
INTEGER |
Execution state of the internal thread handling this session:
|
|
ph_pages_io |
BIGINT |
Number of pages that have been physically accessed on disk in the current transaction. |
|
lg_pages_io |
BIGINT |
Total number of logical pages accessed in the current transaction. |
|
tran_id |
BIGINT |
Unique id of most recent transaction of this session |
|
tran_state |
INTEGER |
Transaction's current commit state:
|
|
tran_iso |
INTEGER |
Transaction's isolation level:
|
|
tran_auto_commit |
INTEGER |
Transaction's automatic commit mode. 0: Auto-commit off; 1: Auto-commit on. |
|
locks |
INTEGER |
Number of row-level locks that the transaction is currently holding. |
|
blocked_by_tran_id |
BIGINT |
Transaction id that this session is waiting for locks from |
|
error |
VARCHAR |
Text of the most recent error message |
|
sql |
VARCHAR |
Last SQL statement executed |
Related