Skip to content

Commit 2929fcc

Browse files
authored
Introduce is_distributed (and document existing end_time and database_name) (#34898)
1 parent 23aaa57 commit 2929fcc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

docs/relational-databases/system-views/queryinsights-exec-requests-history-transact-sql.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,12 @@ The `queryinsights.exec_requests_history` in [!INCLUDE [fabric](../../includes/f
2626

2727
| Column name | Data type | Description |
2828
| --- | --- | --- |
29+
| `database_name` | **varchar(200)** | Specifies the name of the item to which the SQL endpoint was connected at the time of query execution. |
2930
| `distributed_statement_id` | **uniqueidentifier** | Unique ID for each query. |
3031
| `submit_time` | **datetime2** | Time at which the request was submitted for execution. |
3132
| `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`). |
3235
| `command` | **varchar(8000)** | Complete text of the executed query. |
3336
| `login_name` | **varchar(128)** | Name of the user or system that sent the query. |
3437
| `program_name` | **varchar(128)** | Name of client program that initiated the session. The value is `NULL` for internal sessions. Is nullable. |

0 commit comments

Comments
 (0)