Partition.Source Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the current partition bindings to the data.

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

Syntax

[TypeConverterAttribute("Microsoft.AnalysisServices.Design.PartitionSourceTypeConverter, Microsoft.AnalysisServices.Design")]
[MergablePropertyAttribute(false)]
[EditorAttribute("Microsoft.AnalysisServices.Design.PartitionSourcePropertyTypeEditor, Microsoft.AnalysisServices.Design", 
    typeof(UITypeEditor))]
[XmlElementAttribute(IsNullable = false)]
public TabularBinding Source { get; set; }
public:
[TypeConverterAttribute("Microsoft.AnalysisServices.Design.PartitionSourceTypeConverter, Microsoft.AnalysisServices.Design")]
[MergablePropertyAttribute(false)]
[EditorAttribute("Microsoft.AnalysisServices.Design.PartitionSourcePropertyTypeEditor, Microsoft.AnalysisServices.Design", 
    (UITypeEditor^::typeid))]
[XmlElementAttribute(IsNullable = false)]
property TabularBinding^ Source {
    TabularBinding^ get();
    void set(TabularBinding^ value);
}
[<TypeConverterAttribute("Microsoft.AnalysisServices.Design.PartitionSourceTypeConverter, Microsoft.AnalysisServices.Design")>]
[<MergablePropertyAttribute(false)>]
[<EditorAttribute("Microsoft.AnalysisServices.Design.PartitionSourcePropertyTypeEditor, Microsoft.AnalysisServices.Design",
    typeof(UITypeEditor))>]
[<XmlElementAttribute(IsNullable = false)>]
member Source : TabularBinding with get, set
<TypeConverterAttribute("Microsoft.AnalysisServices.Design.PartitionSourceTypeConverter, Microsoft.AnalysisServices.Design")>
<MergablePropertyAttribute(False)>
<EditorAttribute("Microsoft.AnalysisServices.Design.PartitionSourcePropertyTypeEditor, Microsoft.AnalysisServices.Design",
    GetType(UITypeEditor))>
<XmlElementAttribute(IsNullable := False)>
Public Property Source As TabularBinding

Property Value

Type: Microsoft.AnalysisServices.TabularBinding

A TabularBinding object.

Remarks

Source defines the binding for the partition by specifying one or more data sources, tables, and filters. This allows overrides to the defaults specified on the measure group.

See Also

Partition Class
Microsoft.AnalysisServices Namespace

Return to top