Last active
March 10, 2026 12:37
-
-
Save MarkPryceMaherMSFT/8ac86364824b208fe97085e112052d16 to your computer and use it in GitHub Desktop.
query-insights exec_requests_history
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT [distributed_statement_id], | |
| [database_name], | |
| [submit_time], | |
| [start_time], | |
| [end_time], | |
| [is_distributed], | |
| [statement_type], | |
| [total_elapsed_time_ms], | |
| [login_name], | |
| [row_count], | |
| [status], | |
| [session_id], | |
| [connection_id], | |
| [program_name], | |
| [batch_id], | |
| [root_batch_id], | |
| [query_hash], | |
| [label], | |
| [result_cache_hit], | |
| --[sql_pool_name], | |
| [error_code], | |
| [error_severity], | |
| [error_state], | |
| [allocated_cpu_time_ms], | |
| [data_scanned_remote_storage_mb], | |
| [data_scanned_memory_mb], | |
| [data_scanned_disk_mb], | |
| [command] | |
| FROM [queryinsights].[exec_requests_history] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment