Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 1.64 KB

File metadata and controls

33 lines (27 loc) · 1.64 KB
title sys.dm_pdw_component_health_status (Transact-SQL)
description sys.dm_pdw_component_health_status holds information about the current health of appliance components.
author rwestMSFT
ms.author randolphwest
ms.date 03/31/2025
ms.service sql
ms.subservice data-warehouse
ms.topic conceptual
dev_langs
TSQL
monikerRange >=aps-pdw-2016

sys.dm_pdw_component_health_status (Transact-SQL)

[!INCLUDE pdw]

Holds information about the current health of appliance components.

| Column name | Data type | Description | | --- | --- | --- | --- | | pdw_node_id | int | Not nullable. | | component_id | int | The ID of the component. For more information, see sys.pdw_health_components. Not nullable. | | property_id | int | The ID of the property. For more information, see sys.pdw_health_component_properties. Not nullable. | | component_instance_id | nvarchar(255) | Identifies an instance of a component. For example, an instance of a CPU might be identified by component_instance_id = 'CPU1'. Not nullable. | | property_value | nvarchar(255) | The current property value. Nullable. | | update_time | datetime | The last time the metric was updated. Not nullable. |

1 pdw_node_id, component_id, property_id, and component_instance_id form the key for this view.

Related content