bulolo opened a new issue, #6705:
URL: https://github.com/apache/seatunnel/issues/6705

   ### 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
   
   ```
   Caused by: 
org.apache.seatunnel.engine.common.exception.JobDefineCheckException: Adding 
transform to multi-table source is not supported.
   ```
   
   ### SeaTunnel Version
   
   2.3.4
   
   ### SeaTunnel Config
   
   ```conf
   env {
     parallelism = 1
     job.mode = "STREAMING"
     checkpoint.interval = 5000
   }
   
   source {
     SqlServer-CDC {
       username = "sa"
       password = "Password!"
       startup.mode="initial"
       exactly_once=true
       result_table_name = "temp_orderdetail"
       database-names = ["SCPRD"]
       table-names = ["SCPRD.wmwhse2.ORDERDETAIL", "SCPRD.wmwhse3.ORDERDETAIL"]
       base-url = "jdbc:sqlserver://192.168.103.113:1433;databaseName=SCPRD"
     }
   }
   
   
   transform {
     Sql {
       source_table_name = "temp_orderdetail"
       result_table_name = "temp_orderdetail2"
       query = "select ORDERKEY from temp_orderdetail"
     }
   }
   
   
   sink {
     console {
       source_table_name = "temp_orderdetail2"
     }
   }
   ```
   
   
   ### Running Command
   
   ```shell
   ./bin/seatunnel.sh --config ./example/wms-sqlserver2sr-orderdetail -e local
   ```
   
   
   ### Error Exception
   
   ```log
   Caused by: 
org.apache.seatunnel.engine.common.exception.JobDefineCheckException: Adding 
transform to multi-table source is not supported.
   ```
   ```
   
   
   ### Zeta or Flink or Spark Version
   
   _No response_
   
   ### Java or Scala Version
   
   _No response_
   
   ### 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]

Reply via email to