DimensionAttribute.AttributeHierarchyOptimizedState Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the level of optimization applied to the attribute hierarchy.

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

Syntax

[DefaultValueAttribute(OptimizationType.FullyOptimized)]
public OptimizationType AttributeHierarchyOptimizedState { get; set; }
public:
[DefaultValueAttribute(OptimizationType::FullyOptimized)]
property OptimizationType AttributeHierarchyOptimizedState {
    OptimizationType get();
    void set(OptimizationType value);
}
[<DefaultValueAttribute(OptimizationType.FullyOptimized)>]
member AttributeHierarchyOptimizedState : OptimizationType with get, set
<DefaultValueAttribute(OptimizationType.FullyOptimized)>
Public Property AttributeHierarchyOptimizedState As OptimizationType

Property Value

Type: Microsoft.AnalysisServices.OptimizationType

The level of optimization applied to the attribute hierarchy.

Remarks

The value of this property can be:

Value

Description

FullyOptimized

The server builds indexes for the attribute hierarchy to improve query performance.

NotOptimized

No additional indexes are built by the server.

See Also

DimensionAttribute Class
Microsoft.AnalysisServices Namespace

Return to top