Hi Team,
in SQL loaded that dat file contains the data as below format
1111320220124
1121420220124
Table structure
CREATE TABLE tmp_order(id number,sid number,exp_date date );
SQLLOADER CTL FILE
LOAD DATA
REPLACE
INTO TABLE tmp_order
TRAILING NULLCOLS
(
ID POSTION(1:3) INTEGER EXTERNAL(3),
SID POSTION(4:5) INTEGER EXTERNAL(2),
EXP_DATE POSTION(6:13) INTEGER EXTERNAL(8)
)
while load data into table look like below format
id sid exp_date
111 13 2022-01-24 00:00:00
112 14 2022-01-24 00:00:00
kindly help me how to create the ctl file and load the data as above format
Thanks