Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.94 KB

File metadata and controls

36 lines (30 loc) · 1.94 KB
title sys.dm_pdw_wait_stats (Transact-SQL)
description sys.dm_pdw_wait_stats (Transact-SQL)
author WilliamDAssafMSFT
ms.author wiassaf
ms.date 03/14/2017
ms.service sql
ms.subservice data-warehouse
ms.topic reference
dev_langs
TSQL
monikerRange >=aps-pdw-2016||=azure-sqldw-latest

sys.dm_pdw_wait_stats (Transact-SQL)

[!INCLUDEapplies-to-version/asa-pdw]

Holds information related to the [!INCLUDEssNoVersion] OS state related to instances running on the different nodes. For a list of waits types and their description, see sys.dm_os_wait_stats.

Column Name Data Type Description Range
pdw_node_id int ID of the node this entry refers to.
wait_name nvarchar(255) Name of the wait type.
max_wait_time bigint Maximum wait time of this wait type.
request_count bigint Number of waits of this wait type outstanding.
signal_time bigint Difference between the time that the waiting thread was signaled and when it started running.
completed_count bigint Total number of waits of this type completed since the last server restart.
wait_time bigint Total wait time for this wait type in milliseconds. Inclusive of signal_time.

See Also

Azure Synapse Analytics and Parallel Data Warehouse Dynamic Management Views (Transact-SQL)
sys.dm_pdw_waits (Transact-SQL)