Forum Discussion
2 Replies
- fmdfNew Contributor III
I am getting the same error but only on one of my pipelines that is using it.
I can’t tell which column is failing because it just says “Column 9”. I can’t see the data because it says Row 2393 and I don’t know how to get to that row to debug.
Did you ever figure this out?
Can Anyone help.Thanks
- mohitNew Contributor
Hi @fmdf
I resolved the issue by increasing the length of column in table. It is saying “Column 9”, then you just have to go and get the ddl of table and check which column is there at 9th position and then increase the length of column.
In my case I was facing this issue bcoz snowflake handles both Unicode and non Unicode characters with Varchar but in sql server for Unicode you have to give nvarchar. So lets say if you have column length is varchar(100) in snowflake then you have to give nvarchar(100) or more than that. Please try this if it helps.