File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
docs/relational-databases/system-views Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -26,9 +26,12 @@ The `queryinsights.exec_requests_history` in [!INCLUDE [fabric](../../includes/f
26
26
27
27
| Column name | Data type | Description |
28
28
| --- | --- | --- |
29
+ | ` database_name ` | ** varchar(200)** | Specifies the name of the item to which the SQL endpoint was connected at the time of query execution. |
29
30
| ` distributed_statement_id ` | ** uniqueidentifier** | Unique ID for each query. |
30
31
| ` submit_time ` | ** datetime2** | Time at which the request was submitted for execution. |
31
32
| ` start_time ` | ** datetime2** | Time when the query started running. |
33
+ | ` end_time ` | ** datetime2** | Time when the query completed execution. |
34
+ | ` is_distributed ` | ** int** | Specifies whether the query was executed in a distributed nature (` 1 ` ), or not (` 0 ` ). |
32
35
| ` command ` | ** varchar(8000)** | Complete text of the executed query. |
33
36
| ` login_name ` | ** varchar(128)** | Name of the user or system that sent the query. |
34
37
| ` program_name ` | ** varchar(128)** | Name of client program that initiated the session. The value is ` NULL ` for internal sessions. Is nullable. |
You can’t perform that action at this time.
0 commit comments