MiningStructure.Collation Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the collation used by MiningStructure.

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

Syntax

[EditorAttribute("Microsoft.AnalysisServices.Design.CollationPropertyTypeEditor, Microsoft.AnalysisServices.Design", 
    typeof(UITypeEditor))]
[XmlElementAttribute(IsNullable = false)]
[TypeConverterAttribute("Microsoft.AnalysisServices.Design.CollationTypeConverter, Microsoft.AnalysisServices.Design")]
public string Collation { get; set; }
public:
[EditorAttribute("Microsoft.AnalysisServices.Design.CollationPropertyTypeEditor, Microsoft.AnalysisServices.Design", 
    (UITypeEditor^::typeid))]
[XmlElementAttribute(IsNullable = false)]
[TypeConverterAttribute("Microsoft.AnalysisServices.Design.CollationTypeConverter, Microsoft.AnalysisServices.Design")]
property String^ Collation {
    String^ get();
    void set(String^ value);
}
[<EditorAttribute("Microsoft.AnalysisServices.Design.CollationPropertyTypeEditor, Microsoft.AnalysisServices.Design",
    typeof(UITypeEditor))>]
[<XmlElementAttribute(IsNullable = false)>]
[<TypeConverterAttribute("Microsoft.AnalysisServices.Design.CollationTypeConverter, Microsoft.AnalysisServices.Design")>]
member Collation : string with get, set
<EditorAttribute("Microsoft.AnalysisServices.Design.CollationPropertyTypeEditor, Microsoft.AnalysisServices.Design",
    GetType(UITypeEditor))>
<XmlElementAttribute(IsNullable := False)>
<TypeConverterAttribute("Microsoft.AnalysisServices.Design.CollationTypeConverter, Microsoft.AnalysisServices.Design")>
Public Property Collation As String

Property Value

Type: System.String

A String that indicates the collation used by the specified MiningStructure.

Remarks

The string that identifies a collation consists of the locale identifier (LCID) and the comparison flag, separated by an underscore character. For example, Latin1_General_CI_AS is an acceptable string.

See Also

MiningStructure Class
Microsoft.AnalysisServices Namespace

Return to top