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
This is a
syntax rule for describing tables.Use it in a
command for loading or unloading data to specify a table name.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
place 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
place 27-36
price 41-44 REAL
INFILE 'hotel.data' FORMATTED;