Entering content frame

 load_column_spec 

Syntax Rules for Column Descriptions

Syntax

<load_column_spec> ::= <column_descriptor> [<null_condition>] | <column_assignment>

Use

Use this rule in a command for loading application data to assign the data fields in the data stream to the columns in the target table, and specify the external data types and conditions for loading the data.

DATALOAD TABLE article
  ano         01-08 CHAR
  descr       09-39 CHAR
  stock      40-43 INTEGER
  min_ord     44-45 INTEGER
  ordered     46-49 INTEGER
  del_date 50-57 CHAR
  price       58-65 DECIMAL (2)
  weight      66-69 REAL
INFILE 'article.data' FORMATTED

Leaving content frame