SSIS Text was truncated with status value 4

前端 未结 7 1303
借酒劲吻你
借酒劲吻你 2020-12-17 10:57

I am developing a SSIS package, trying to update an existing SQL table from a CSV flat file. All of the columns are successfully updating except for one column. If I ignor

7条回答
  •  既然无缘
    2020-12-17 11:22

    I've had this issue before, it is likely that the default column size for the file is incorrect. It will put a default size of 50 characters but the data you are working with is larger. In the advanced settings for your data file, adjust the column size from 50 to the table's column size.

提交回复
热议问题