MeasureGroup.AggregationPrefix Property

 

Applies To: SQL Server 2016 Preview

Gets or sets a prefix used on tables used for aggregation (which are actually indexed views). This serves as default for Partitions in the MeasureGroup.

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

Syntax

[XmlElementAttribute(IsNullable = false)]
public string AggregationPrefix { get; set; }
public:
[XmlElementAttribute(IsNullable = false)]
property String^ AggregationPrefix {
    String^ get();
    void set(String^ value);
}
[<XmlElementAttribute(IsNullable = false)>]
member AggregationPrefix : string with get, set
<XmlElementAttribute(IsNullable := False)>
Public Property AggregationPrefix As String

Property Value

Type: System.String

An aggregation prefix.

Remarks

Any string that will make the indexed views unique in the database can be used. It is up to the database administrator to decide what prefix will make the indexed view unique.

See Also

MeasureGroup Class
Microsoft.AnalysisServices Namespace

Return to top