fields terminated by ',' TRAILING NULLCOLS
(s_i,s_e,s_n)
下面我们可以执行:
C:\>sqlldr scott/tiger control=c:\c.ctl log='c:\cc.log'
在日志中会记录我们插入的过程,甚至包括使用的cpu,使用的时间等
在使用工程中有几个参数我们需要注意一下:
如果表中没有索引,可以加上direct=y 这样更快
skip_index_maintenance=no 维护索引
skip_index_maintenance=yes 不维护索引
parallel =false 非并行处理
当parallel =true and skip_index_maintenance=no 则不可用 原因: 并行插数时 索引无法维护 访问资源冲突
摘自 Dream19881003的专栏