Hi, I am working on a custom version of `tap-oracl...
# singer-tap-development
f
Hi, I am working on a custom version of
tap-oracle
, based on
s7clarke10
/
pipelinewise
to cover some special cases of our source db. During tests I noticed that the replication method
log_based
uses continuous mine, which is deprecated since Oracle 12c and desupported since Oracle 19c, so six years ago. - Anyone knows an alternative I could use for logmining functionality? - trigger-based instead of log-based is currently no option for us.
I think I might have found a solution via adding logfiles to the LogMiner according to the information from
V$LOGMNR_LOGS
, instead of continuous mining, according to the oracle documentation: https://docs.oracle.com/en/database/oracle/oracle-database/19/arpls/DBMS_LOGMNR.html
👍 1