天天看点

【导入导出】sqlldr 导入案例

今天使用sqlldr 将600w单字段的数据导入到一个表当中,但是由于未指定分隔符导致导入数据失败。重现一下导入过程。

load.ctl

load data

infile 'd:\rid_600w.txt'

insert

into table tmp_user (tuid)

c:\users\aaaa>sqlldr  userid=yang/yang control=d:\load.ctl direct=true

sql*loader: release 11.1.0.6.0 - production on 星期三 3月 9 20:12:02 2011

copyright (c) 1982, 2007, oracle.  all rights reserved.

加载完成 - 逻辑记录计数 6070664。

==========sqlplus记录

c:\users\aaaa>sqlplus yang/yang

sql*plus: release 11.1.0.6.0 - production on 星期三 3月 9 19:42:28 2011

连接到:

oracle database 11g enterprise edition release 11.1.0.6.0 - production

with the partitioning, olap, data mining and real application testing options

yang@oracl> create table tmp_user(tuid varchar2(100));

表已创建。

yang@oracl> select tuid from tmp_user where rownum <12;

tuid

------------------------

c

已选择11行。

===================导入的日志如下:注意 长度的值为1--失败的关键。

控制文件:      d:\load.ctl

数据文件:      d:\rid_600w.txt

  错误文件:    d:\rid_600w.bad

  废弃文件:    未作指定

(可废弃所有记录)

要加载的数: all

要跳过的数: 0

允许的错误: 50

继续:    未作指定

所用路径:       直接

表 tmp_user,已加载从每个逻辑记录

插入选项对此表 insert 生效

   列名                        位置      长度  中止 包装数据类型

------------------------------ ---------- ----- ---- ---- ---------------------

tuid                                first     1           character            

表 tmp_user:

  6070664 行 加载成功。

  由于数据错误, 0 行 没有加载。

  由于所有 when 子句失败, 0 行 没有加载。

  由于所有字段都为空的, 0 行 没有加载。

在直接路径中没有使用绑定数组大小。

列数组  行数:    5000

流缓冲区字节数:  256000

读取   缓冲区字节数: 1048576

跳过的逻辑记录总数:          0

读取的逻辑记录总数:       6070664

拒绝的逻辑记录总数:          0

废弃的逻辑记录总数:        0

由 sql*loader 主线程加载的流缓冲区总数:     1259

由 sql*loader 加载线程加载的流缓冲区总数:        0

从 星期三 3月  09 20:12:02 2011 开始运行

在 星期三 3月  09 20:12:09 2011 处运行结束

经过时间为: 00: 00: 06.30

cpu 时间为: 00: 00: 01.98

错误的原因是因为没有指出分割符。fields terminated by '    '/fields terminated by 'chr(10)' 都可以。

==========修改后的load 控制文件====

into table tmp_user fields terminated by 'chr(10)' (tuid)

fields teriminated by 'chr(10)' 表示一换行符为分隔符

c:\users\aaaa>sqlldr  userid=yang/yang control=d:\load.ctl direct=true log=d:\sqlldr.log

sql*loader: release 11.1.0.6.0 - production on 星期三 3月 9 20:21:07 2011

yang@oracl> truncate table tmp_user;

表被截断。

yang@oracl> drop table tmp_user;

表已删除。

yang@oracl> create table tmp_user(tuid varchar2(50));

--------------------------

cindy74583

himself49441

paragraph58429

wander80900

soluble32354

situation72689

gross51644

lee54299

dismiss32151

eyesight1968

advance7776

yang@oracl>

===================导入的日志如下:注意 长度的值为*

tuid                                first     *           character            

    终止符字符串:  'chr(10)'

从 星期三 3月  09 20:21:07 2011 开始运行

在 星期三 3月  09 20:21:17 2011 处运行结束

经过时间为: 00: 00: 09.89

cpu 时间为: 00: 00: 05.82