The TABLE statement is used to specify the table to export from one server and import to another server.
specifies the name to use for the server instance that is exporting the table.
specifies the in-memory table to export. The name is specified as server-tag.member-name.
specifies the name to use for the server instance that is importing the table.
specifies the name to use for the imported table.
HPS
and USER.SASDEMO
can
be used as tags for a table name. For more information,
see Understanding Server Tags.specifies how rows that are marked for deletion are handled in the transfer. By default, DELETED=EXCLUDE, which implies that any row that has a deletion mark is not transferred.
Default | EXCLUDE |
specifies the WHERE clause to apply to the exported table. Only rows that meet the conditions of the WHERE expression are transferred.
Alias | FILTER= |
specifies how to handle partitioning (and ordering within the partitions) when a partitioned table is transferred. By default, PARTITION=YES, and implies that a partitioned table is transferred to the importing server and remains partitioned and ordered by the same variables. When the servers have different numbers of worker nodes, there is no guarantee that partitions end up on the same nodes. However, it is guaranteed that partitions appear together on a node in the importing server.
Default | YES |
specifies the permission setting for accessing the imported table. The mode value is specified as an integer value such as 755. The mode corresponds to the mode values that are used for UNIX file access permissions.
Alias | PERM= |
Range | 600 to 777 |