Can I unload from Redshift to an S3 bucket with a multiple character delimiter? For example to use a double pipe delimiter as below? Because when doing so the file created in S3 has only the first | as a delimiter and disregards the second.
unload ('select * from venue')
to 's3://mybucket/unload/'
iam_role 'arn:aws:iam::0123456789012:role/MyRedshiftRole'
CSV DELIMITER AS '||';
I tried also with other multiple characters such as '|~|'
or '~~'
but again it keeps only the first character.
You can only specify a single character as delimiter. See the UNLOAD documentation: