Mage Pro streaming pipeline supports OracleDB CDC as the source. This document explains how to set up OracleDB CDC and integrate it into Mage’s streaming pipeline using LogMiner.
connector_type: oracledbhost: "oracledb.example.com"port: 1521service: "xepdb1"password: "password"user: "user"mode: "thin" # Value can be `thin` or `thick`table_names: [] # Filter table names
CREATE USER cdc_user IDENTIFIED BY YourPassword;GRANT CONNECT, RESOURCE TO cdc_user;GRANT EXECUTE ON DBMS_LOGMNR TO cdc_user;GRANT EXECUTE ON DBMS_LOGMNR_D TO cdc_user;GRANT SELECT ON V_$LOGMNR_CONTENTS TO cdc_user;GRANT SELECT ON V_$DATABASE TO cdc_user;GRANT SELECT ON V_$ARCHIVED_LOG TO cdc_user;GRANT SELECT ON V_$LOGMNR_LOGS TO cdc_user;GRANT SELECT ON V_$LOGMNR_PARAMETERS TO cdc_user;GRANT SELECT ANY TABLE TO cdc_user;