Dimension.DependsOnDimension Property

 

Applies To: SQL Server 2016 Preview

Gets the dimension object of a dimension that the current dimension either depends on, or is highly correlated with.

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

Syntax

[XmlIgnoreAttribute]
[BrowsableAttribute(false)]
public Dimension DependsOnDimension { get; }
public:
[XmlIgnoreAttribute]
[BrowsableAttribute(false)]
property Dimension^ DependsOnDimension {
    Dimension^ get();
}
[<XmlIgnoreAttribute>]
[<BrowsableAttribute(false)>]
member DependsOnDimension : Dimension with get
<XmlIgnoreAttribute>
<BrowsableAttribute(False)>
Public ReadOnly Property DependsOnDimension As Dimension

Property Value

Type: Microsoft.AnalysisServices.Dimension

The dimension object of a dimension that the current dimension either depends on, or is highly correlated with.

Remarks

If a dimension A has a strong correlation to dimension B, then you should set A depends on B. This way, the aggregation design algorithm won’t consider both as mutually independent dimensions. For example, Fiscal Time is dependent on Calendar Time.

See Also

Dimension Class
Microsoft.AnalysisServices Namespace

Return to top