Hi, i want to exclude a particular table from sync...
# troubleshooting
s
Hi, i want to exclude a particular table from sync. have used
Copy code
meltano select --exclude tap-mysql 'table_name' '*'
but it didn't work. Pls help
t
Hi @sumit_singh. You probably need to include the schema name in the table, separated by a dash. So try something like
Copy code
meltano select --exclude tap-mysql 'schema_name-table_name' '*'