oracle利用 sqlldr 导入文本数据

oracle利用 sqlldr 导入文本数据

1.input.ctl

load data
infile 'test.txt'
append into table temp_log
fields terminated by ','
(a, b)

2.test.txt
a,b
123,567
890,312

3. sqlldr userid=用户名/密码 control=input.ctl

你可能感兴趣的:(oracle利用 sqlldr 导入文本数据)