Partition.StorageLocation Property

 

Applies To: SQL Server 2016 Preview

Gets or sets a string with the file system storage location of the partition.

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

Syntax

[TypeConverterAttribute("Microsoft.AnalysisServices.Design.Partitions.PartitionStorageLocationTypeConverter, Microsoft.AnalysisServices.Design")]
[ReadOnlyAttribute(false)]
[EditorAttribute("Microsoft.AnalysisServices.Design.Partitions.PartitionStorageTypeEditor, Microsoft.AnalysisServices.Design", 
    typeof(UITypeEditor))]
[XmlElementAttribute(IsNullable = false)]
public string StorageLocation { get; set; }
public:
[TypeConverterAttribute("Microsoft.AnalysisServices.Design.Partitions.PartitionStorageLocationTypeConverter, Microsoft.AnalysisServices.Design")]
[ReadOnlyAttribute(false)]
[EditorAttribute("Microsoft.AnalysisServices.Design.Partitions.PartitionStorageTypeEditor, Microsoft.AnalysisServices.Design", 
    (UITypeEditor^::typeid))]
[XmlElementAttribute(IsNullable = false)]
property String^ StorageLocation {
    String^ get();
    void set(String^ value);
}
[<TypeConverterAttribute("Microsoft.AnalysisServices.Design.Partitions.PartitionStorageLocationTypeConverter, Microsoft.AnalysisServices.Design")>]
[<ReadOnlyAttribute(false)>]
[<EditorAttribute("Microsoft.AnalysisServices.Design.Partitions.PartitionStorageTypeEditor, Microsoft.AnalysisServices.Design",
    typeof(UITypeEditor))>]
[<XmlElementAttribute(IsNullable = false)>]
member StorageLocation : string with get, set
<TypeConverterAttribute("Microsoft.AnalysisServices.Design.Partitions.PartitionStorageLocationTypeConverter, Microsoft.AnalysisServices.Design")>
<ReadOnlyAttribute(False)>
<EditorAttribute("Microsoft.AnalysisServices.Design.Partitions.PartitionStorageTypeEditor, Microsoft.AnalysisServices.Design",
    GetType(UITypeEditor))>
<XmlElementAttribute(IsNullable := False)>
Public Property StorageLocation As String

Property Value

Type: System.String

A String value.

Remarks

By default, StorageLocation is the storage location for the parent cube and the parent measure group.

See Also

Partition Class
Microsoft.AnalysisServices Namespace

Return to top