DwTableDistributionType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The enumeration specifies the SQL DW distributed table distribution types.
[System.ComponentModel.TypeConverter(typeof(Microsoft.SqlServer.Management.Smo.DwTableDistributionConverter))]
public enum DwTableDistributionType
[<System.ComponentModel.TypeConverter(typeof(Microsoft.SqlServer.Management.Smo.DwTableDistributionConverter))>]
type DwTableDistributionType =
Public Enum DwTableDistributionType
- Inheritance
-
DwTableDistributionType
- Attributes
Fields
Name | Value | Description |
---|---|---|
Undefined | 0 | A table distribution is undefined. |
None | 1 | A table doesn't have a distribution. |
Hash | 2 | SQL DW table has a HASH distribution. |
Replicate | 3 | SQL DW table has a REPLICATE distribution. |
RoundRobin | 4 | SQL DW table has a ROUND_ROBIN distribution. |