Oracle GoldenGate · Schema

DatabaseStatistics

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
processName string
totalOperations integer
inserts integer
updates integer
deletes integer
truncates integer
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-databasestatistics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatabaseStatistics",
  "title": "DatabaseStatistics",
  "type": "object",
  "properties": {
    "processName": {
      "type": "string",
      "example": "example_value"
    },
    "totalOperations": {
      "type": "integer",
      "format": "int64",
      "example": 10
    },
    "inserts": {
      "type": "integer",
      "format": "int64",
      "example": 10
    },
    "updates": {
      "type": "integer",
      "format": "int64",
      "example": 10
    },
    "deletes": {
      "type": "integer",
      "format": "int64",
      "example": 10
    },
    "truncates": {
      "type": "integer",
      "format": "int64",
      "example": 10
    }
  }
}