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

CREATE TABLE parquet-sample

The table parquet-target is intended for a BULK INSERT statement and contains:

  • A numeric unique identifier
  • ID, INT and DECIMAL data types
  • a four-point DECIMAL constraint

Before you begin

CREATE TABLE statement

CREATE TABLE parquet-target (
    _id ID,
    integercol INT,
    decimalcol DECIMAL(4)
);

Next step