Class InitialDataLoad
Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
Inherited Members
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class InitialDataLoadProperties
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