vi example4.dat
hello,"world",###
james,"bond",###
vi example4.ctl
load data
infile 'example4.dat' "str '###\n'"
into table example4 append
fields terminated by ',' optionally enclosed by '"'
(col1 ,col2 )
create table test.example4(col1 varchar2(100),col2 varchar2(100));
sqlldr test/test@orcl DIRECT=TRUE control=example4.ctl data=example4.dat
select * from test.example4;