You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this seems to be assumed behavior in dbt-utils and has come up in dbt-msft/tsql-utils#17 dbt-sqlserver uses the ?but we're using row[column] which I don't understand the difference at all. I must have copied it from somewhere...
the real challenge comes from Synapse not supporting SQL Server's Table Value Constructor. so we need quoted lists?? do dates need to be quoted still???
this seems to be assumed behavior in
dbt-utils
and has come up in dbt-msft/tsql-utils#17dbt-sqlserver
uses the?
but we're usingrow[column]
which I don't understand the difference at all. I must have copied it from somewhere...the real challenge comes from Synapse not supporting SQL Server's Table Value Constructor. so we need quoted lists?? do dates need to be quoted still???
more context from a Stack Overflow question I asked:
potential solution
add an
elif
condition after line 27 that if the agate column type Text or Date, and the data is an empty string, then replace with NULL.https://github.com/dbt-msft/dbt-synapse/blob/2764b15c513b54d3054a1e1daa4049d6288d9ac5/dbt/include/sqlserver/macros/materializations/seed/seed.sql#L17-L34
The text was updated successfully, but these errors were encountered: