Partition.Type Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the partition type as either Data or Writeback.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)

Syntax

[DefaultValueAttribute(PartitionType.Data)]
[ReadOnlyAttribute(true)]
public PartitionType Type { get; set; }
public:
[DefaultValueAttribute(PartitionType::Data)]
[ReadOnlyAttribute(true)]
property PartitionType Type {
    PartitionType get();
    void set(PartitionType value);
}
[<DefaultValueAttribute(PartitionType.Data)>]
[<ReadOnlyAttribute(true)>]
member Type : PartitionType with get, set
<DefaultValueAttribute(PartitionType.Data)>
<ReadOnlyAttribute(True)>
Public Property Type As PartitionType

Property Value

Type: Microsoft.AnalysisServices.PartitionType

A PartitionType enumeration value; either Data or Writeback.

Remarks

By default, the partition type is Data.

See Also

Partition Class
Microsoft.AnalysisServices Namespace

Return to top