Enabling Incremental Transfer in RAPCache Tables

Enable RAPCache tables for incremental transfer.

Execute the new FOR TRANSFER clause on the CREATE and ALTER TABLE commands:

To create a new table with incremental transfer enabled:

CREATE TABLE table_name {other clauses as needed}
WITH TRANSFER TABLE ON

To alter an exisiting table to enable incremental transfer:

ALTER TABLE table_name {other clauses as needed}
SET TRANSFER TABLE ON