Sdílet prostřednictvím


SqlPartitionSettings Constructors

Definition

Overloads

SqlPartitionSettings()

Initializes a new instance of the SqlPartitionSettings class.

SqlPartitionSettings(Object, Object, Object)

Initializes a new instance of the SqlPartitionSettings class.

SqlPartitionSettings()

Initializes a new instance of the SqlPartitionSettings class.

public SqlPartitionSettings ();
Public Sub New ()

Applies to

SqlPartitionSettings(Object, Object, Object)

Initializes a new instance of the SqlPartitionSettings class.

public SqlPartitionSettings (object partitionColumnName = default, object partitionUpperBound = default, object partitionLowerBound = default);
new Microsoft.Azure.Management.DataFactory.Models.SqlPartitionSettings : obj * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.SqlPartitionSettings
Public Sub New (Optional partitionColumnName As Object = Nothing, Optional partitionUpperBound As Object = Nothing, Optional partitionLowerBound As Object = Nothing)

Parameters

partitionColumnName
Object

The name of the column in integer or datetime type that will be used for proceeding partitioning. If not specified, the primary key of the table is auto-detected and used as the partition column. Type: string (or Expression with resultType string).

partitionUpperBound
Object

The maximum value of the partition column for partition range splitting. This value is used to decide the partition stride, not for filtering the rows in table. All rows in the table or query result will be partitioned and copied. Type: string (or Expression with resultType string).

partitionLowerBound
Object

The minimum value of the partition column for partition range splitting. This value is used to decide the partition stride, not for filtering the rows in table. All rows in the table or query result will be partitioned and copied. Type: string (or Expression with resultType string).

Applies to