This is the strangest error, and I don\'t even know where to start understanding what\'s wrong.
S3 has been working well, up until suddenly one day (yesterday) it st
If your data includes non-ASCII multibyte characters (such as Chinese or Cyrillic characters)
, you must load the data to VARCHAR
columns. The VARCHAR
data type supports four-byte UTF-8 characters, but the CHAR
data type only accepts single-byte ASCII characters.
Source: http://docs.aws.amazon.com/redshift/latest/dg/t_loading_unicode_data.html