Oracle GoldenGate · Schema
Replicat
CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Replicat process name |
| type | string | Type of replicat |
| status | string | Current process status |
| description | string | |
| trail | string | Source trail file path |
| checkpointTable | string | Checkpoint table name |
| config | array | Parameter file content lines |
| credentials | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Replicat",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Replicat process name"
},
"type": {
"type": "string",
"description": "Type of replicat"
},
"status": {
"type": "string",
"description": "Current process status"
},
"description": {
"type": "string"
},
"trail": {
"type": "string",
"description": "Source trail file path"
},
"checkpointTable": {
"type": "string",
"description": "Checkpoint table name"
},
"config": {
"type": "array",
"description": "Parameter file content lines"
},
"credentials": {
"type": "object"
}
}
}