SapTablePartitionSettings Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SapTablePartitionSettings() |
Initializes a new instance of the SapTablePartitionSettings class. |
SapTablePartitionSettings(Object, Object, Object, Object) |
Initializes a new instance of the SapTablePartitionSettings class. |
SapTablePartitionSettings()
Initializes a new instance of the SapTablePartitionSettings class.
public SapTablePartitionSettings ();
Public Sub New ()
Applies to
SapTablePartitionSettings(Object, Object, Object, Object)
Initializes a new instance of the SapTablePartitionSettings class.
public SapTablePartitionSettings (object partitionColumnName = default, object partitionUpperBound = default, object partitionLowerBound = default, object maxPartitionsNumber = default);
new Microsoft.Azure.Management.DataFactory.Models.SapTablePartitionSettings : obj * obj * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.SapTablePartitionSettings
Public Sub New (Optional partitionColumnName As Object = Nothing, Optional partitionUpperBound As Object = Nothing, Optional partitionLowerBound As Object = Nothing, Optional maxPartitionsNumber As Object = Nothing)
Parameters
- partitionColumnName
- Object
The name of the column 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).
- maxPartitionsNumber
- Object
The maximum value of partitions the table will be split into. Type: integer (or Expression with resultType string).