Show / Hide Table of Contents

Class InitialDataLoad

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

Inheritance
object
InitialDataLoad
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 InitialDataLoad

Properties

ActionOnExistingTable

Declaration
[JsonProperty(PropertyName = "actionOnExistingTable")]
[JsonConverter(typeof(ResponseEnumConverter))]
public InitialLoadAction? ActionOnExistingTable { get; set; }
Property Value
Type Description
InitialLoadAction?

Action upon existing tables in target when initial Data Load is set i.e., isInitialLoad=true.

IsInitialLoad

Declaration
[Required(ErrorMessage = "IsInitialLoad is required.")]
[JsonProperty(PropertyName = "isInitialLoad")]
[JsonConverter(typeof(ResponseEnumConverter))]
public InitialDataLoad.IsInitialLoadEnum? IsInitialLoad { get; set; }
Property Value
Type Description
InitialDataLoad.IsInitialLoadEnum?

If ENABLED, then existing source data is also synchronized to the target when creating or updating the pipeline.

Remarks

Required

In this article
Back to top