Server.DefaultCompatibilityLevel Property

 

Applies To: SQL Server 2016 Preview

Gets the compatibility level of the Analysis Services engine.

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

Syntax

[ReadOnlyAttribute(true)]
[XmlElementAttribute(Namespace = "https://schemas.microsoft.com/analysisservices/2012/engine/400")]
public int DefaultCompatibilityLevel { get; private set; }
public:
[ReadOnlyAttribute(true)]
[XmlElementAttribute(Namespace = "https://schemas.microsoft.com/analysisservices/2012/engine/400")]
property int DefaultCompatibilityLevel {
    int get();
    private: void set(int value);
}
[<ReadOnlyAttribute(true)>]
[<XmlElementAttribute(Namespace = "https://schemas.microsoft.com/analysisservices/2012/engine/400")>]
member DefaultCompatibilityLevel : int with get, private set
<ReadOnlyAttribute(True)>
<XmlElementAttribute(Namespace := "https://schemas.microsoft.com/analysisservices/2012/engine/400")>
Public Property DefaultCompatibilityLevel As Integer
    Get
    Private Set
End Property

Property Value

Type: System.Int32

Returns Int32.

Remarks

This property is added in the DDL400 namespace and will only be returned when a client uses that namespace. Expected values for this property include 1100 for multidimensional mode, and 1103 for tabular or SharePoint mode. If connecting to an older server, the value returned is 0.

See Also

Server Class
Microsoft.AnalysisServices Namespace

Return to top