Table of Contents

Class AzureSynapseAnalyticsSchema.HealthComponent

Namespace
LinqToDB.Tools.DataProvider.SqlServer.Schemas
Assembly
linq2db.Tools.dll

sys.pdw_health_components (Transact-SQL)

Applies to: √ Analytics Platform System (PDW)

Stores information about all components and devices that exist in the system. These include hardware, storage devices, and network devices.


See sys.pdw_health_components.

[Table(Schema = "sys", Name = "pdw_health_components", IsView = true)]
public class AzureSynapseAnalyticsSchema.HealthComponent
Inheritance
AzureSynapseAnalyticsSchema.HealthComponent
Extension Methods

Properties

ComponentID

Unique identifier of a component or device.

Key for this view.
Range: NOT NULL

[Column("component_id")]
[NotNull]
public int ComponentID { get; set; }

Property Value

int

ComponentName

Name of the component.
Range: NOT NULL

[Column("component_name")]
[NotNull]
public string ComponentName { get; set; }

Property Value

string

GroupID

The logical component group to which this component belongs. See sys.pdw_health_components (Parallel Data Warehouse).
Range: NOT NULL

[Column("group_id")]
[NotNull]
public object GroupID { get; set; }

Property Value

object