Entering content frame

 table_name 

Syntax Rules for Table Descriptions

Syntax

<table_name> ::= <valTABLE_NAME> | <valTABLE_OWNER>.<valTABLE_NAME>

valTABLE_NAME

Name of the table

Specify the table name in accordance with the SQL conventions. You can also define a user name as a prefix.

valTABLE_OWNER

Owner of the table

Use

You use this syntax rule for specifying a table name in a command to load or unload data.

FASTLOAD TABLE hotel
  IF (POS 41-44 REAL < '400.00')
  AND
     (POS 41-44 REAL >= '400.00')
      hno     01-04 INTEGER
      name    09-18
      zip     20-25 DECIMAL
      city    27-36
      price   41-44 REAL
INFILE 'hotel.data' FORMATTED;

DATALOAD TABLE berolina.hotel
  IF (POS 41-44 REAL < '400.00')
  AND
     (POS 41-44 REAL >= '400.00')
      hno     01-04 INTEGER
      name    09-18
      zip     20-25 DECIMAL
      city     27-36
      price   41-44 REAL
INFILE 'hotel.data' FORMATTED;

 

Leaving content frame