Class CreateDataPumpParameters
Optional parameters for Data Pump Export and Import.
Inherited Members
Namespace: Oci.DatabasemigrationService.Models
Assembly: OCI.DotNetSDK.Databasemigration.dll
Syntax
public class CreateDataPumpParameters
Properties
Estimate
Declaration
[JsonProperty(PropertyName = "estimate")]
[JsonConverter(typeof(StringEnumConverter))]
public DataPumpEstimate? Estimate { get; set; }
Property Value
Type | Description |
---|---|
DataPumpEstimate? | Estimate size of dumps that will be generated. |
ExcludeParameters
Declaration
[JsonProperty(PropertyName = "excludeParameters")]
public List<DataPumpExcludeParameters> ExcludeParameters { get; set; }
Property Value
Type | Description |
---|---|
List<DataPumpExcludeParameters> | Exclude paratemers for Export and Import. |
ExportParallelismDegree
Declaration
[JsonProperty(PropertyName = "exportParallelismDegree")]
public int? ExportParallelismDegree { get; set; }
Property Value
Type | Description |
---|---|
int? | Maximum number of worker processes that can be used for a Data Pump Export job. |
ImportParallelismDegree
Declaration
[JsonProperty(PropertyName = "importParallelismDegree")]
public int? ImportParallelismDegree { get; set; }
Property Value
Type | Description |
---|---|
int? | Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property. |
IsCluster
Declaration
[JsonProperty(PropertyName = "isCluster")]
public bool? IsCluster { get; set; }
Property Value
Type | Description |
---|---|
bool? | Set to false to force Data Pump worker process to run on one instance. |
TableExistsAction
Declaration
[JsonProperty(PropertyName = "tableExistsAction")]
[JsonConverter(typeof(StringEnumConverter))]
public DataPumpTableExistsAction? TableExistsAction { get; set; }
Property Value
Type | Description |
---|---|
DataPumpTableExistsAction? | IMPORT: Specifies the action to be performed when data is loaded into a preexisting table. |