lovatti opened a new issue, #9754: URL: https://github.com/apache/seatunnel/issues/9754
### Search before asking - [x] I had searched in the [issues](https://github.com/apache/seatunnel/issues?q=is%3Aissue+label%3A%22bug%22) and found no similar issues. ### What happened Hi! How are you? Tickets without solution https://github.com/apache/seatunnel/issues/8201 https://github.com/apache/seatunnel/issues/9190 Seatunnel + Debezium parameters does not work properly snapshot.select.statement.overrides DOES NOT WORK column.include.list WORKS **column.include.list WORKS** ``` column.include.list="CONSINCO.GE_REDE.ROWID,CONSINCO.GE_REDE.SEQREDE,CONSINCO.GE_REDE.DESCRICAO,CONSINCO.GE_REDE.VLRLIMITECREDITO,CONSINCO.GE_REDE.DTAALTERACAO,CONSINCO.GE_REDE.USUALTERACAO,CONSINCO.GE_REDE.INDREPLICACAO,CONSINCO.GE_REDE.INDGEROUREPLIC,CONSINCO.GE_REDE.PERCANTECIP1,CONSINCO.GE_REDE.PERCANTECIP2,CONSINCO.GE_REDE.VLRLIMITETOTALPERIODO" ``` **Tried also without database-name** ``` snapshot.select.statement.overrides = "CONSINCO.GE_REDE" snapshot.select.statement.overrides.CONSINCO.GE_REDE = "SELECT ROWID, SEQREDE, DESCRICAO, VLRLIMITECREDITO, DTAALTERACAO, INDREPLICACAO, INDGEROUREPLIC, PERCANTECIP1, PERCANTECIP2, VLRLIMITETOTALPERIODO FROM CONSINCO.GE_REDE" ``` Thank you! Bruno ### SeaTunnel Version 2.3.11 ### SeaTunnel Config ```conf env { parallelism = 1 job.mode = "STREAMING" log_level = "DEBUG" checkpoint.interval = 120000 checkpoint.timeout = 120000 } source { Oracle-CDC { plugin_output = "ORA-GE_REDE" username = "proj" password = "???????????" database-names = ["CONSINCO"] schema-names = ["CONSINCO"] table-names = ["CONSINCO.CONSINCO.GE_REDE"] base-url = "jdbc:oracle:thin:@MYORACLEHOST:1521/CONSINCO" driver = "oracle.jdbc.OracleDriver" source.reader.close.timeout = 120000 startup.mode = "initial" debezium = { database.port = 1521 rac.nodes = "192.168.1.116,192.168.1.117" snapshot.mode = "initial" heartbeat.interval.ms = 3000 snapshot.select.statement.overrides = "CONSINCO.CONSINCO.GE_REDE" snapshot.select.statement.overrides.CONSINCO.CONSINCO.GE_REDE = "SELECT ROWID, SEQREDE, DESCRICAO, VLRLIMITECREDITO, DTAALTERACAO, INDREPLICACAO, INDGEROUREPLIC, PERCANTECIP1, PERCANTECIP2, VLRLIMITETOTALPERIODO FROM CONSINCO.GE_REDE" } } } ``` ### Running Command ```shell ./bin/seatunnel.sh --config ./config/orach.GE_REDE.conf -n GE_REDE ``` ### Error Exception ```log no error data is replicated without respecting the snapshot.select.statement.overrides ``` ### Zeta or Flink or Spark Version Zeta ### Java or Scala Version openjdk version "11.0.28" 2025-07-15 ### Screenshots _No response_ ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [x] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
