Table of Contents

Class AzureSynapseAnalyticsSchema.ColumnDistributionProperty

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

sys.pdw_column_distribution_properties (Transact-SQL)

Applies to: √ Azure Synapse Analytics √ Analytics Platform System (PDW)

Holds distribution information for columns.


See sys.pdw_column_distribution_properties.

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

Properties

ColumnID

ID of the column.

[Column("column_id")]
[NotNull]
public int ColumnID { get; set; }

Property Value

int

DistributionOrdinal

Ordinal (1-based) within set of distribution.
Range: 0 = Not a distribution column. 1 = Azure Synapse Analytics is using this column to distribute the parent table.

[Column("distribution_ordinal")]
[NotNull]
public byte DistributionOrdinal { get; set; }

Property Value

byte

Object

objects (sys.objects)

[Association(ThisKey = "ObjectID", OtherKey = "ObjectID", CanBeNull = false)]
public ObjectSchema.Object Object { get; set; }

Property Value

ObjectSchema.Object

ObjectID

ID of the object to which the column belongs.

[Column("object_id")]
[NotNull]
public int ObjectID { get; set; }

Property Value

int