Hi, I am replicating data from MSSQL to BigQuery. ...
# troubleshooting
d
Hi, I am replicating data from MSSQL to BigQuery. tap-mssql target-bigquery There are however column names with non-alphanumeric characters, and I am getting this error. How can I replace non-alphanumeric characters with underscores.
r
Probably possible by configuring stream maps in your
target-bigquery
config (assuming
z3z1ma
variant). > Similarly for targets, the received streams are processed by the
stream_maps
config setting prior to any Sink processing functions.
Something like
Copy code
config:
    stream_maps:
      <stream>:
        <property>: self.encode().decode('ascii', errors='replace')