Show / Hide Table of Contents

Class ReplicateSchemaChange

Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.

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

Properties

ActionOnDdlError

Declaration
[JsonProperty(PropertyName = "actionOnDdlError")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ReplicateDdlErrorAction? ActionOnDdlError { get; set; }
Property Value
Type Description
ReplicateDdlErrorAction?

Action upon DDL Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true

ActionOnDmlError

Declaration
[JsonProperty(PropertyName = "actionOnDmlError")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ReplicateDmlErrorAction? ActionOnDmlError { get; set; }
Property Value
Type Description
ReplicateDmlErrorAction?

Action upon DML Error (active only if 'Replicate schema changes (DDL)' is selected) i.e canReplicateSchemaChange=true

CanReplicateSchemaChange

Declaration
[Required(ErrorMessage = "CanReplicateSchemaChange is required.")]
[JsonProperty(PropertyName = "canReplicateSchemaChange")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ReplicateSchemaChange.CanReplicateSchemaChangeEnum? CanReplicateSchemaChange { get; set; }
Property Value
Type Description
ReplicateSchemaChange.CanReplicateSchemaChangeEnum?

If ENABLED, then addition or removal of schema is also replicated, apart from individual tables and records when creating or updating the pipeline.

Remarks

Required

In this article
Back to top