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-rest-database-statistics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DatabaseStatistics",
  "type": "object",
  "properties": {
    "processName": {
      "type": "string"
    },
    "totalOperations": {
      "type": "integer"
    },
    "inserts": {
      "type": "integer"
    },
    "updates": {
      "type": "integer"
    },
    "deletes": {
      "type": "integer"
    },
    "truncates": {
      "type": "integer"
    }
  }
}