I have a .csv file which contains French characters. The data is like this: Antonie Bégarder,12345,6789,France
The file got loaded to S3. I am using COPY command to load the file from S3 to Redshift. I was getting the error:
String contains invalid or unsupported UTF8 codepoints. Bad UTF8 hex sequence: e9 6c 61 (error 4)
After that I used, ACCEPTINVCHARS as '`' in the COPY command. The data got loaded, but it looks like:
Antonie B`garder
Any solution for this?