davidzollo commented on issue #10199:
URL: https://github.com/apache/seatunnel/issues/10199#issuecomment-3665150555

   You can have a try to modify the `database` parameter to the schema name 
(Schema Name) of the Dameng database you wish to write to, for example, `MYDB`.
   
   ```hocon
   sink {
     Jdbc {
       url = "jdbc:dm://10.27.138.228:5236?schema=MYDB"
       driver = "dm.jdbc.driver.DmDriver"
       user = "SYSDBA"
       password = "Passc0de003"
   
       # Modify here; database corresponds to Dameng's Schema
       database = "MYDB" 
       
       # The table-names parameter is invalid in Jdbc Sink and can be removed
       # table-names = ["MYDB.t","MYDB.myrt2"]
   
       generate_sink_sql = true 
       batch_size = 1000
     }
   }
   ```
   
   In addition, `table-names` is not a valid configuration item for JDBC Sink. 
SeaTunnel will automatically map based on the table names read from the Source 
side (by default, the `${table_name}` placeholder is used). You can refer to: 
https://seatunnel.apache.org/docs/2.3.12/connector-v2/sink/Jdbc


-- 
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