The syntax rule table_name specifies the table name in Loader commands for exporting and importing data.
You use the syntax rule table_name to specify the name(s) of the target table(s) in Loader commands for exporting or importing data.
Example
EXPORT TABLE hotel.room
DATA OUTSTREAM 'room_csv.data'
The application data from table ROOM is exported.
Example
IMPORT TABLE hotel.room
DATA INSTREAM 'room_csv.data'
hno 1
type 2
free 3
price 4
The application data from file room_csv.data is imported into the specified columns of table ROOM.
Example
IMPORT TABLE hotel.room
IF POS 06–11 = 'double'
DATA INSTREAM 'room_csv.data'
hno 01-05
type 06-11
free 12-15
price 16-22
You only want to import those data records from the data stream room_csv.data into the target table ROOM in which double is specified as the room type.