Skip to Content
Unified docs shell with shared Classifyre tokens and acid-green highlight accents.
SourcesOracle

Oracle

Schema-driven source documentation.

ORACLE47 fields2 examples
Commonly Asked Questions
Assistant knowledge mapped to this source type from assistant_knowledge.json.

Required
Fields required for a valid configuration payload under `config.required`.
PathTypeRequiredDescriptionDefaultConstraints
requiredobjectYesno extra properties
required.hoststringYesOracle host endpointlocalhost
required.portintegerYesOracle TCP port1521min 1, max 65535
required.service_namestringYesOracle service name (for example, TEST_PDB)
Masked
Sensitive fields under `config.masked` (secrets/credentials).
PathTypeRequiredDescriptionDefaultConstraints
maskedobjectYesno extra properties
masked.passwordstringYesOracle login password
masked.usernamestringYesOracle login username
Optional
Optional configuration fields under `config.optional`.
PathTypeRequiredDescriptionDefaultConstraints
optionalobjectNono extra properties
optional.connectionobjectNoConnection tuning for Oracle.no extra properties
optional.connection.connect_timeout_secondsintegerNoConnection timeout in seconds10min 1, max 120
optional.scopeobjectNoSchema, object, and lineage extraction scope.no extra properties
optional.scope.exclude_schemasarrayNoSchema denylist (exact schema names)["SYS","SYSTEM","DBSNMP","WMSYS","CTXSYS","XDB","MDSYS","ORDSYS","OUTLN","ORDDATA"]
optional.scope.exclude_schemas[]stringNo
optional.scope.include_objectsarrayNoOptional object allowlist. Accepted forms: schema.object or service.schema.object
optional.scope.include_objects[]stringNo
optional.scope.include_schemasarrayNoOptional schema allowlist (exact schema names)
optional.scope.include_schemas[]stringNo
optional.scope.include_tablesbooleanNoInclude table assets in extractiontrue
optional.scope.include_view_column_lineagebooleanNoEnable view column lineage collection from Oracle dependency metadatatrue
optional.scope.include_view_lineagebooleanNoExtract coarse lineage links from views to referenced tables/viewstrue
optional.scope.include_viewsbooleanNoInclude view assets in extractiontrue
optional.scope.table_limitintegerNoOptional cap on number of table/view assets extractedmin 1
Examples
Reference payloads generated from shared source examples JSON.
Quick discovery scan
Discover all tables and views in the Oracle service with lineage — works with any standard Oracle setup

Schedule

{
  "enabled": true,
  "preset": "weekday_business",
  "cron": "12 13 * * 1-5",
  "timezone": "UTC"
}

Config Payload

{
  "type": "ORACLE",
  "required": {
    "host": "your-host",
    "port": 1521,
    "service_name": "your-service-name"
  },
  "masked": {
    "username": "your-username",
    "password": "your-password"
  },
  "optional": {
    "scope": {
      "include_tables": true,
      "include_views": true,
      "include_view_lineage": true,
      "include_view_column_lineage": true
    }
  },
  "sampling": {
    "strategy": "RANDOM",
    "rows_per_page": 50
  }
}
Targeted schema scan with latest sampling
Scan specific schema objects and prioritize latest rows — useful for monitoring active business schemas

Schedule

{
  "enabled": true,
  "preset": "nightly",
  "cron": "4 0 * * *",
  "timezone": "UTC"
}

Config Payload

{
  "type": "ORACLE",
  "required": {
    "host": "your-host",
    "port": 1521,
    "service_name": "your-service-name"
  },
  "masked": {
    "username": "your-username",
    "password": "your-password"
  },
  "optional": {
    "scope": {
      "include_tables": true,
      "include_views": true,
      "include_schemas": [
        "YOUR_SCHEMA"
      ]
    }
  },
  "sampling": {
    "strategy": "LATEST",
    "fallback_to_random": true,
    "rows_per_page": 50
  }
}