Bulk load data conversion error (truncation)

后端 未结 5 2197
终归单人心
终归单人心 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:49

    It's picking up the commas within the comments field as delimiters, because the delimiters are not consistent. The best solution is to insure that all fields are wrapped with double quotes and set FIELDTERMINATOR to '","'. Alternately, replace the commas with something unlikely to be in the comments (like ~) and set FIELDTERMINATOR = '~'.

提交回复
热议问题