CREATE a Table
This example creates a table with name TAB1 (the table name is translated to uppercase). A pair for column name and char(nn) is required separated by a comma. The data of a column is always mixed case and can also be hex data. Maximum data length is 10 bytes in this case for all columns.
INGRDS CREATE tab1 COLUMNS (col1 char(10), col3 char (10))