Hi I am trying to setup a tap-mssql in den buzzcut...
# troubleshooting
f
Hi I am trying to setup a tap-mssql in den buzzcutnorman variant for an incremental sync with a start_date. However, at least when I do
meltano invoke tap-mssql
it appears the start date is ignored. Is there any other way to debug my setup? Parallel post on github: https://github.com/BuzzCutNorman/tap-mssql/issues/52
u
Can you try using
replication_key
with an underscore instead of a hyphen? I'm not positive thats the issue but something to test
b
Please try removing the
.*
from the end of the
tap_stream_id
in the metadata section and see if that resolves the issue. The updated
metadata:
section would look like this
Copy code
metadata:
      dbo-time_series_meta:
        replication-method: FULL_TABLE
      dbo-time_series:
        replication-method: INCREMENTAL
        replication-key: updated
f
@BuzzCutNorman yes this was the culprit!
b
Yay glad to hear that🎉