Skip to content

Commit f79a15f

Browse files
committed
column name
1 parent 34aa30e commit f79a15f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/synapse-analytics/sql-data-warehouse/performance-tuning-result-set-caching.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ Cached result set is reused for a query if all of the following requirements are
6666
- There is an exact match between the new query and the previous query that generated the result set cache.
6767
- There is no data or schema changes in the tables where the cached result set was generated from.
6868

69-
Run this command to check if a query was executed with a result cache hit or miss. The result_set_cache column returns 1 for cache hit, 0 for cache miss, and negative values for reasons why result set caching was not used. Check [sys.dm_pdw_exec_requests](/sql/relational-databases/system-dynamic-management-views/sys-dm-pdw-exec-requests-transact-sql?toc=/azure/synapse-analytics/sql-data-warehouse/toc.json&bc=/azure/synapse-analytics/sql-data-warehouse/breadcrumb/toc.json&view=azure-sqldw-latest) for details.
69+
Run this command to check if a query was executed with a result cache hit or miss. The result_cache_hit column returns 1 for cache hit, 0 for cache miss, and negative values for reasons why result set caching was not used. Check [sys.dm_pdw_exec_requests](/sql/relational-databases/system-dynamic-management-views/sys-dm-pdw-exec-requests-transact-sql?toc=/azure/synapse-analytics/sql-data-warehouse/toc.json&bc=/azure/synapse-analytics/sql-data-warehouse/breadcrumb/toc.json&view=azure-sqldw-latest) for details.
7070

7171
```sql
72-
SELECT request_id, command, result_set_cache FROM sys.dm_pdw_exec_requests
72+
SELECT request_id, command, result_cache_hit FROM sys.dm_pdw_exec_requests
7373
WHERE request_id = <'Your_Query_Request_ID'>
7474
```
7575

0 commit comments

Comments
 (0)