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

   If you need to synchronize only specific columns for some tables, you can 
use the `Sql` transform to filter or rename columns.
   
   Here is an example configuration:
   ```hocon
   transform {
     Sql {
       # Match specific tables using regex
       table_match_regex = "test.abc"
       # Select only specific columns
       query = "select id, name from dual"
     }
   }
   ```
   
   You can also define multiple rules for different tables within the same 
transform block if needed, or use multiple transform blocks.
   
   For more details, please refer to the [SQL Transform 
Documentation](https://seatunnel.apache.org/docs/transform-v2/sql).


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