How to create an external table from my text file and use that to update to real table, rather than creating a (normal) staging table and using SQL*Loader.
sample.ctl
load data
infile 'data.txt'
append into table newtable
fields terminated by '|'
TRAILING NULLCOLS
(ACCOUNTNBR)
data.txt
some raw datas..
54545554
54542145
65656566
58787788