Special characters in sqlserver connector #331
-
I have a source sqlserver that has tables with spaces in the name fatal: Is there a way to replicate objects with such names or is this some known limitation? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 13 replies
-
Could you share your config? |
Beta Was this translation helpful? Give feedback.
-
can you share your replication yaml? |
Beta Was this translation helpful? Give feedback.
It's because of the spaces in the stream name,
egdp.{stream_table}
gets rendered toegdp.uk_export_auto misc charges vendor atlas_v6
which silently errored since it is not a valid table name.Fixed here: ff7d4d9
Feel free to build the binary from that branch.
For now, you can simply specify the object name for that stream without using
{stream_table}
("egdp"."uk_export_auto_misc_charges_vendor_atlas_v6"
).