This is my control-file:
load data
infile *
into table TESTTABLE
fields terminated by ',' optionally
enclosed by '"'
(
COLUMN1,
-- skip
column from source here
COLUMN2,
COLUMN3
)
BEGINDATA
"1","skip this","2","3"
(
COLUMN1
position( 1:1) char,
COLUMN2
position(18:18) char,
COLUMN3
position(22:22) char,
COLUMN4
position(32:37)date 'MMDDRR'
)