I'm pulling data from Amazon S3 into a table in Amazon Redshift. The table contains various columns, where some column data might contain special characters.
The copy command has an option called Delimiter
where we can specify the delimiter while pulling the data into the table.
The issue is 2 fold -
When I export (unload command)
to S3 using a delimiter - say ,
- it works fine, but when I try to import into Redshift from S3, the issue creeps in because certain columns contain the ',' operator which the copy command misinterprets as delimiter and throws error.
I tried various delimiters, but the data in my table seems to contain some or other kind of special character which causes the above issue.
I even tried unloading using multiple delimiter - like #%
or ~,
but when loading from s3 using copy command - the dual delimiter is not supported.
Any solutions?
I think the delimiter can be escaped using \
but for some reason that isn't working either, or maybe I'm not using the right syntax for escaping in copy command.