Transfer Redshift data between regions
Firstly, use aws’s UNLOAD command to save your redshift data to s3. UNLOAD('your select sql statement') TO 's3://bucketname/directory/file_prefix' ACCESS_KEY_ID 'aws_id' SECRET_ACCESS_KEY 'aws_key' ALLOWOVERWRITE ADDQUOTES ESCAPE PARALLEL OFF GZIP MANIFEST Above is just a unload template, just replace s3 location to save files which contains redshift data, aws key id and access key, also select command to select data what will be saved. There are some extra command flags need explained: ALLOWOVERWRITE : The command can override origin existed data. ADDQUOTES : The default delimiter of upload command is pipe symbol,...