Bulk load data conversion error (truncation)

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

    System.Data.SqlClient.SqlException (0x80131904): Bulk load data conversion error (truncation) for row 97, column 33

    For the above error, you can check

    • Data type size of column(e.g. VARCHAR(255)) is if it is sufficient to import data or not.
    • AND the row terminator e.g.
      • ROWTERMINATOR = '0x0A'
      • ROWTERMINATOR = '\n'
      • ROWTERMINATOR = '\r\n'
    • FIELDTERMINATOR
      • Make sure the selected field terminator does not occur with in data. If there is a chance of it, then replace it with some other character e.g. | in the file.

提交回复
热议问题