[quote=“bokechal”]Incorrect string value: ‘\x96 5PM…’ for column ‘description’ at row 44[/quote]Note the encoding for the dash. Looks like a mismatch in the encoding between the assumed type for the file and the column you are inserting to. That dash is U+2013, not the normal U+002D hyphen. The utf8 encoding for U+2013 is 0xE2 0x80 0x93, which is probably getting corrupted by attempted encoding resolution. If the column can’t handle that special character (forgot to use utf8?), the server will reject it.