1 概述
用于将来自外部文件的数据加载到 Oracle DB 中;
它是可用于将数据加载到数据库表中的多个 Oracle 实用程序之一。
2使用
2.1 编写sqlldr控制文件
cat > bpx.ctl
load data
infile '/home/oracle/bpx.csv'
badfile '/home/oracle/bpx.bad'
truncate
into table bpx
fields terminated by ','
(user_id,item_id,behavior_type,user_geohash,item_category,time)
2.2 执行sqlldr命令
sqlldr userid=loadtest/test@orcl control=/home/oracle/bpx.ctl log=/home/oracle/bpx.log
11g 17-26
11g A151