create table test
(
id number(5) primary key,
name varchar2(20)
)create sequence id_seq
start with 1
increment by 1
nocache;控制文件 test.ctl
load data
infile 'c:\test.txt'
append
into table scott.test
fields terminated by ","
(
id_seq sequence(65535,1),
name
)数据文件 test.txt
young1
young2
young3sqlldr scott/tiger control=c:\test.ctl data=c:\test.txt现在报错如下:SQL*Loader-466: Column ID_SEQ does not exist in table SCOTT.TEST.