Bulk load data conversion error (truncation)

后端 未结 5 2151
终归单人心
终归单人心 2020-12-18 19:04

I am getting this error

Bulk load data conversion error (truncation) for row 1, column 12 (is_download)

here is the csv...it only has one

5条回答
  •  無奈伤痛
    2020-12-18 19:35

    This can be solved easily by using the following in your bulk insert:

    FORMAT ='CSV'
    

    This takes care of the commas in a string.

    Please select this as answer if it helped you.

提交回复
热议问题