Share via


NetezzaPartitionSettings Constructors

Definition

Overloads

NetezzaPartitionSettings()

Initializes a new instance of the NetezzaPartitionSettings class.

NetezzaPartitionSettings(Object, Object, Object)

Initializes a new instance of the NetezzaPartitionSettings class.

NetezzaPartitionSettings()

Initializes a new instance of the NetezzaPartitionSettings class.

public NetezzaPartitionSettings ();
Public Sub New ()

Applies to

NetezzaPartitionSettings(Object, Object, Object)

Initializes a new instance of the NetezzaPartitionSettings class.

public NetezzaPartitionSettings (object partitionColumnName = default, object partitionUpperBound = default, object partitionLowerBound = default);
new Microsoft.Azure.Management.DataFactory.Models.NetezzaPartitionSettings : obj * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.NetezzaPartitionSettings
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 type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).

partitionUpperBound
Object

The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).

partitionLowerBound
Object

The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).

Applies to