Amazon Redshift Now Supports Appending Rows to Tables and Exporting Query Results to BZIP2-compressed Files

Posted on: Feb 8, 2016

Append rows to a target table: Using the ALTER TABLE APPEND command, you can now append rows to a target table. When you issue this command, Amazon Redshift moves the data from the source table to matching columns in the target table. ALTER TABLE APPEND is usually much faster than a similar CREATE TABLE AS or INSERT INTO operation because it moves the data instead of duplicating it. This could be particularly useful in cases where you load data into a staging table, process it, and then copy the results into a production table. For more details, refer to the ALTER TABLE APPEND command. 

Export query results to BZIP2-compressed files: The UNLOAD command now supports BZIP2 compression format, in addition to GZIP, for exporting query results to one or more compressed files. Refer to Data Format Parameters for more details.