Skip to content

Commit 1cd270e

Browse files
authored
Merge pull request #93799 from XiaoyuMSFT/xyz
fix missing dm
2 parents 683dab8 + 555b2be commit 1cd270e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Cached result set is reused for a query if all of the following requirements are
4444
Run this command to check if a query was executed with a result cache hit or miss. If there is a cache hit, the result_cache_hit will return 1.
4545

4646
```sql
47-
SELECT request_id, command, result_cache_hit FROM sys.pdw_exec_requests
47+
SELECT request_id, command, result_cache_hit FROM sys.dm_pdw_exec_requests
4848
WHERE request_id = <'Your_Query_Request_ID'>
4949
```
5050

0 commit comments

Comments
 (0)