DimensionAttribute.KeyUniquenessGuarantee Property

 

Applies To: SQL Server 2016 Preview

Gets or sets whether the relationship between the attribute key and its name, and the relationship to related attributes, is guaranteed to be valid.

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

Syntax

[BrowsableAttribute(false)]
[DefaultValueAttribute(false)]
public bool KeyUniquenessGuarantee { get; set; }
public:
[BrowsableAttribute(false)]
[DefaultValueAttribute(false)]
property bool KeyUniquenessGuarantee {
    bool get();
    void set(bool value);
}
[<BrowsableAttribute(false)>]
[<DefaultValueAttribute(false)>]
member KeyUniquenessGuarantee : bool with get, set
<BrowsableAttribute(False)>
<DefaultValueAttribute(False)>
Public Property KeyUniquenessGuarantee As Boolean

Property Value

Type: System.Boolean

true if the relationship between the attribute key and its name, and the relationship to related attributes, is guaranteed to be valid; otherwise, false.

Remarks

Analysis Services uses the KeyUniquenessGuarantee parameter to optimize query construction when it retrieves members from the underlying data source for this attribute.

See Also

DimensionAttribute Class
Microsoft.AnalysisServices Namespace

Return to top