chris_elliott
02/16/2023, 6:52 PMplugins:
extractors:
- name: tap-oracle-saturn
inherit_from: tap-oracle
config:
filter_schemas: SATURN
default_replication_method: INCREMENTAL
select:
- SATURN-TABLE1.*
- SATURN-TABLE2.*
metadata:
SATURN-TABLE1
replication-key: TABLE1_ACTIVITY_DATE
SATURN-TABLE2:
replication-key: TABLE2_ACTIVITY_DATE
I’ve limited the example to two, but in reality it will probably be between 50 and 100 when I’m done.steve_clarke
02/17/2023, 3:35 AMexport TAP_ORACLE__SELECT='["STEVE_TABLE1.*","STEVE_TABLE2.*","STEVE_TABLE3.*"]'
export TAP_ORACLE__METADATA='{"STEVE_TABLE1": {"is-view":false, "replication-method": "FULL_TABLE", "table-key-properties": ["REP_KEY_1"]}}'
steve_clarke
02/17/2023, 3:37 AMmeltano.yml
file which lives in my docker image.chris_elliott
02/17/2023, 12:34 PM