You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/relational-databases/system-views/queryinsights-exec-sessions-history-transact-sql.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: "The queryinsights.exec_sessions_history in Microsoft Fabric provid
4
4
author: WilliamDAssafMSFT
5
5
ms.author: wiassaf
6
6
ms.reviewer: mariyaali
7
-
ms.date: 07/17/2024
7
+
ms.date: 07/23/2024
8
8
ms.service: sql
9
9
ms.topic: "reference"
10
10
f1_keywords:
@@ -31,7 +31,7 @@ monikerRange: "=fabric"
31
31
|`session_start_time`|**datetime2**| Time when session was established. It is not nullable. |
32
32
|`session_end_time`|**datetime2**| Time when the session was disconnected. Sessions that have not completed at the time this view is queried are shown with a value of `1900-01-01`.|
33
33
|`program_name`|**varchar(128)**| Name of client program that initiated the session. The value is `NULL` for internal sessions. Is nullable. |
34
-
|`login_name`|**varchar(128)**|SQL Server login name under which the session is currently executing. For the original login name that created the session, see `original_login_name`. Can be a SQL Server authenticated login name or a Windows authenticated domain username. It is not nullable. |
34
+
|`login_name`|**varchar(128)**|Login name under which the session is currently executing. It is not nullable. |
35
35
|`status`|**varchar(30)**| Status of the session. Values:<br />**Running** - Currently running one or more requests<br />**Sleeping** - Currently running no requests<br />**Dormant** - Session reset because of connection pooling and is now in prelogin state.<br />**Preconnect** - Session is in the Resource Governor classifier.<br />Is not nullable. |
36
36
|`context_info`|**varbinary(128)**|`CONTEXT_INFO` value for the session. The context information is set by the user with [SET CONTEXT_INFO](/sql/t-sql/statements/set-context-info-transact-sql?view=azure-sqldw-latest&preserve-view=true). Is nullable. |
37
37
|`total_query_elapsed_time_ms`|**int**| Total time, in milliseconds, for which the session (requests within) was scheduled/executed for execution. It is not nullable. |
@@ -58,7 +58,7 @@ monikerRange: "=fabric"
58
58
|`transaction_isolation_level`|**smallint**| Transaction isolation level of the session.<br />`0` = Unspecified<br />`1` = ReadUncommitted<br />`2` = ReadCommitted<br />`3` = RepeatableRead<br />`4` = Serializable<br />`5` = Snapshot<br />Is not nullable. |
59
59
|`lock_timeout`|**int**|`LOCK_TIMEOUT` setting for the session. The value is in milliseconds. It is not nullable. |
60
60
|`deadlock_priority`|**int**|`DEADLOCK_PRIORITY` setting for the session. It is not nullable. |
61
-
|`original_security_id`|**varbinary(85)**|[!INCLUDE [msCoName](../../includes/msconame-md.md)] Windows security ID that is associated with the `original_login_name`. Not nullable. |
61
+
|`original_security_id`|**varbinary(85)**|[!INCLUDE [msCoName](../../includes/msconame-md.md)] Windows security ID that is associated with the `login_name`. Not nullable. |
62
62
|`database_name`|**varchar(128)**| Name of the current database for each session. |
0 commit comments