Cube.StorageLocation Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the storage location for the cube.

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

Syntax

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

Property Value

Type: System.String

A String that contains the location of the cube in the file system.

Remarks

This property contains the default location for the cube. Each partition can override this setting.

See Also

Cube Class
Microsoft.AnalysisServices Namespace

Return to top