UNLOAD SINGLE TABLE

Description

The UNLOAD SINGLE TABLE syntax is used to unload single table.

Syntax

Grammar Railroad diagram

  1. unloadSingleTable ::=
  2. 'UNLOAD' 'SINGLE' 'TABLE' tableNames
  3. tableNames ::=
  4. tableName (',' tableName)*
  5. tableName ::=
  6. identifier

Supplement

  • Unlike loading, only the table name needs to be specified when unloading a single table

Example

  • Unload specified single table
  1. UNLOAD SINGLE TABLE t_single;
  • Load all single tables
  1. UNLOAD SINGLE TABLE *;
  2. -- or
  3. UNLOAD ALL SINGLE TABLES;

Reserved word

UNLOAD, SINGLE, TABLE, ALL, TABLES