SqlPartitionSettings Class

The settings that will be leveraged for Sql source partitioning.

Inheritance
azure.mgmt.datafactory._serialization.Model
SqlPartitionSettings

Constructor

SqlPartitionSettings(*, partition_column_name: MutableMapping[str, Any] | None = None, partition_upper_bound: MutableMapping[str, Any] | None = None, partition_lower_bound: MutableMapping[str, Any] | None = None, **kwargs: Any)

Keyword-Only Parameters

Name Description
partition_column_name
<xref:JSON>

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).

partition_upper_bound
<xref:JSON>

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).

partition_lower_bound
<xref:JSON>

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).

Variables

Name Description
partition_column_name
<xref:JSON>

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).

partition_upper_bound
<xref:JSON>

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).

partition_lower_bound
<xref:JSON>

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).