Quarantined items String or Binary Data would be truncated - Store and Forward error help

Hello Sukhwant_Singh,

That error usually suggest that the string/binary that's being inserted into the column is greater than the column type supports. The workaround would be to change the affected Column type from type varchar(255) to varchar(MAX). This would be done on the database side.

Thank You, I was able to do exactly what you suggested and it worked. Thanks! Sukhwant

2 Likes