Skip to main content Link Menu Expand (external link) Document Search Copy Copied

CREATE TABLE for BULK INSERT using tuple

The tuple-set-target table is intended for a BULK INSERT statement and includes:

  • a STRING unique identifier
  • TIMESTAMP, IDSET, STRINGSET, IDSETQ and STRINGSETQ column data types

Before you begin

CREATE TABLE

create table tuple-set-target (
_id string,
time_col timestamp,
stringset_col stringset,
ideset_col idset,
stringsetq_col stringsetq timequantum 'YMD',
idesetq_col idsetq timequantum 'YMD');

Next step