Oracle GoldenGate · Schema

ComparePairStatisticsList

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
statistics array
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-comparepairstatisticslist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ComparePairStatisticsList",
  "title": "ComparePairStatisticsList",
  "type": "object",
  "properties": {
    "statistics": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "comparePairId": {
            "type": "integer",
            "format": "int64"
          },
          "sourceTable": {
            "type": "string"
          },
          "targetTable": {
            "type": "string"
          },
          "status": {
            "type": "string",
            "enum": [
              "In Sync",
              "Out Of Sync",
              "Failed"
            ]
          },
          "sourceRowCount": {
            "type": "integer",
            "format": "int64"
          },
          "targetRowCount": {
            "type": "integer",
            "format": "int64"
          },
          "outOfSyncRows": {
            "type": "integer",
            "format": "int64"
          }
        }
      },
      "example": []
    }
  }
}