Alright here is my delema. I have a .rpt file that is encoded in UCS-2 and is basically two columns separated by a ','.
My query is;
load data infile 'file_name' into table
table_name fields terminated by ','
lines terminated by '\n';
the text is simply two int columns. I keep getting an error that says: Error code: 1366 Incorrect integer value: 'ÿþ1' for column 'column1' at row 1
I've tried creating the table using usc-2 default collation and still the same issue. I've tried converting the .rpt into different encodings to match the table, with no luck.
Thanks