mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-19 14:08:38 +00:00
38 lines
996 B
YAML
38 lines
996 B
YAML
source:
|
|
type: oracle
|
|
config:
|
|
# Coordinates
|
|
host_port: localhost:1521
|
|
database: dbname
|
|
|
|
# Credentials
|
|
username: user
|
|
password: pass
|
|
|
|
# Options
|
|
service_name: svc # omit database if using this option
|
|
|
|
# Data Dictionary Mode
|
|
data_dictionary_mode: "ALL" # or "DBA" for full database access
|
|
|
|
# Stored Procedures
|
|
include_stored_procedures: true
|
|
procedure_pattern:
|
|
allow:
|
|
- "SCHEMA.*" # Include all procedures from SCHEMA
|
|
deny:
|
|
- "SYS.*" # Exclude system procedures
|
|
|
|
# Materialized Views
|
|
include_materialized_views: true
|
|
|
|
# Usage and Operations (requires audit data or query logs)
|
|
include_usage_stats: true
|
|
include_operational_stats: true
|
|
|
|
# Oracle Client Configuration (optional)
|
|
enable_thick_mode: false # Set to true to use Oracle thick client
|
|
# thick_mode_lib_dir: "/path/to/oracle/client" # Required on Mac/Windows if thick mode enabled
|
|
|
|
sink:
|
|
# sink configs |