다음을 통해 공유


PolybaseSettings Constructors

Definition

Overloads

PolybaseSettings()

Initializes a new instance of the PolybaseSettings class.

PolybaseSettings(IDictionary<String,Object>, String, Object, Object, Object)

Initializes a new instance of the PolybaseSettings class.

PolybaseSettings()

Initializes a new instance of the PolybaseSettings class.

public PolybaseSettings ();
Public Sub New ()

Applies to

PolybaseSettings(IDictionary<String,Object>, String, Object, Object, Object)

Initializes a new instance of the PolybaseSettings class.

public PolybaseSettings (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string rejectType = default, object rejectValue = default, object rejectSampleValue = default, object useTypeDefault = default);
new Microsoft.Azure.Management.DataFactory.Models.PolybaseSettings : System.Collections.Generic.IDictionary<string, obj> * string * obj * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.PolybaseSettings
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional rejectType As String = Nothing, Optional rejectValue As Object = Nothing, Optional rejectSampleValue As Object = Nothing, Optional useTypeDefault As Object = Nothing)

Parameters

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

rejectType
String

Reject type. Possible values include: 'value', 'percentage'

rejectValue
Object

Specifies the value or the percentage of rows that can be rejected before the query fails. Type: number (or Expression with resultType number), minimum: 0.

rejectSampleValue
Object

Determines the number of rows to attempt to retrieve before the PolyBase recalculates the percentage of rejected rows. Type: integer (or Expression with resultType integer), minimum: 0.

useTypeDefault
Object

Specifies how to handle missing values in delimited text files when PolyBase retrieves data from the text file. Type: boolean (or Expression with resultType boolean).

Applies to