Share via


OraclePartitionSettings Constructors

Definition

Overloads

OraclePartitionSettings()

Initializes a new instance of the OraclePartitionSettings class.

OraclePartitionSettings(Object, Object, Object, Object)

Initializes a new instance of the OraclePartitionSettings class.

OraclePartitionSettings()

Initializes a new instance of the OraclePartitionSettings class.

public OraclePartitionSettings ();
Public Sub New ()

Applies to

OraclePartitionSettings(Object, Object, Object, Object)

Initializes a new instance of the OraclePartitionSettings class.

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

Parameters

partitionNames
Object

Names of the physical partitions of Oracle table.

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