...
Please check for character encoding prior to data ingestion.
The file uses:
Separator: comma
,
Text qualifier: double quote
"
Escape character: backslash
\
Escaping special characters:
Records in data files may contain both commas and double quotes, and the way the vendor chose to generate a robust CSV is to escape special characters (double quotes and commas) and add double quotes around each field on top of it.
For CHAR and VARCHAR columns in the data files, an escape character (
\
) is placed before every occurrence of the following characters:The delimiter character specified for the unloaded data (in this case, it is “
,
”)The escape character:
\
A quotation mark character:
"
or'
(if both ESCAPE and ADDQUOTES are specified in the UNLOAD command). See https://docs.aws.amazon.com/redshift/latest/dg/r_UNLOAD.html for more information.
...