Show / Hide Table of Contents

Class UpdateDataPumpParameters

Optional parameters for Data Pump Export and Import. If an empty object is specified, the stored Data Pump Parameter details will be removed.

Inheritance
object
UpdateDataPumpParameters
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemigrationService.Models
Assembly: OCI.DotNetSDK.Databasemigration.dll
Syntax
public class UpdateDataPumpParameters

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.

In this article
Back to top