SQLLOADER 15 导入csv文件到数据库

一 描述

此档是sqlloader学习的第15篇.前14篇中,各列分隔条件均在sqlloader控制文件全局指定,本实验目的在sqlloader fileld list 中使用列分隔条件语句.

二 操作环境

OS info

windows server 2003 32bit

DB info

连接到:
Oracle9i Enterprise Edition Release 9.0.1.1.1 - Production
With the Partitioning option
JServer Release 9.0.1.1.1 - Production

SQL> set lines 150
SQL> COL PRODUCT FORMAT A55
SQL> COL VERSION FORMAT A15
SQL> COL STATUS FORMAT A15
SQL> SELECT * FROM PRODUCT_COMPONENT_VERSION;

PRODUCT                                                 VERSION         STATUS
------------------------------------------------------- --------------- ---------------
NLSRTL                                                  9.0.1.1.1       Production
Oracle9i Enterprise Edition                             9.0.1.1.1       Production
PL/SQL                                                  9.0.1.1.1       Production
TNS for 32-bit Windows:                                 9.0.1.1.0       Production

SQL>

other

脚本目录:C:\sqlloader_exec\ppt_case12

三 过程设计

1.准备的flat源数据testLoad.csv
1,one row,1901-01-01
2,two row,1902-01-01
3,three row,1903-01-01
4,four row,1904-01-01
5,five row,1905-01-01
6,six row,1906-01-01
7,serven row,1907-01-01
8,eight row,1908-01-01
9,nine row,1909-01-01
10,ten row

2.相关文件testLoad.sql
rem
rem
rem

set termout off

drop table testLoad;
create table testLoad (f1 number,f2 varchar2(30),f3 date);
exit;

3.相关文件testLoad.ctl
LOAD DATA
 INFILE 'testLoad.csv'
 BADFILE 'testLoad' 
APPEND
 INTO TABLE testLoad
 TRAILING NULLCOLS
 (
  F1 INTEGER EXTERNAL TERMINATED BY ",",
  F2 CHAR TERMINATED BY ",",
  F3 DATE "RRRR-MM-DD" TERMINATED BY ","
 )

4.以scott用户登 数据库运行testLoad.sql初始化环境.
5.在cmd命令下执行sqlldr加载testLoad.ctl控制文件命令
6.查看sqlldr日志信息
7.查看sqlldr bad日志信息
8.查看数据库加载成功的数据

四 详细步骤操作

1.以scott用户登 数据库运行testLoad.sql初始化环境.
C:\sqlloader_exec\ppt_case12>sqlplus "scott/tiger"

SQL*Plus: Release 9.0.1.0.1 - Production on 星期二 8月 7 21:02:44 2012

(c) Copyright 2001 Oracle Corporation.  All rights reserved.


连接到:
Oracle9i Enterprise Edition Release 9.0.1.1.1 - Production
With the Partitioning option
JServer Release 9.0.1.1.1 - Production

SQL> @testLoad
从Oracle9i Enterprise Edition Release 9.0.1.1.1 - Production
With the Partitioning option
JServer Release 9.0.1.1.1 - Production中断开

C:\sqlloader_exec\ppt_case12>

2.在cmd命令下执行sqlldr加载testLoad.ctl控制文件命令
C:\sqlloader_exec\ppt_case12>sqlldr "scott/tiger" control=testLoad.ctl

SQL*Loader: Release 9.0.1.1.1 - Production on 星期二 8月 7 21:03:23 2012

(c) Copyright 2001 Oracle Corporation.  All rights reserved.

达到提交点,逻辑记录计数9
达到提交点,逻辑记录计数10

C:\sqlloader_exec\ppt_case12>

3.查看sqlldr日志信息

SQL*Loader: Release 9.0.1.1.1 - Production on 星期二 8月 7 21:03:23 2012

(c) Copyright 2001 Oracle Corporation.  All rights reserved.

控制文件: testLoad.ctl
数据文件: testLoad.csv
错误文件: testLoad.bad
废弃文件: 未作指定
:
(可废弃所有记录)

加载数: ALL
跳过数: 0
允许的错误: 50
绑定数组: 64 行,最大 256000 字节
继续:    未作指定
所用路径:       常规

表TESTLOAD
已加载从每个逻辑记录
插入选项对此表APPEND生效
TRAILING NULLCOLS 选项生效

   列名                        位置      长度  中止 包装数据类型
------------------------------ ---------- ----- ---- ---- ---------------------
F1                                  FIRST     *    ,      CHARACTER           
F2                                   NEXT     *    ,      CHARACTER           
F3                                   NEXT     *    ,      DATE RRRR-MM-DD     


表TESTLOAD:
10 行加载成功
由于数据错误, 0 行没有加载。
由于所有 WHEN 子句失败, 0 行没有加载。
由于所有字段都为空的, 0 行没有加载。


为结合数组分配的空间:    49536字节(64行)
读取   缓冲区字节数: 1048576

跳过的逻辑记录总数:        0
读取的逻辑记录总数:       10
拒绝的逻辑记录总数:        0
废弃的逻辑记录总数:        0

从星期二 8月  07 21:03:23 2012开始运行
在星期二 8月  07 21:03:24 2012处运行结束

经过时间为: 00: 00: 00.87
CPU 时间为: 00: 00: 00.00(可?

4.查看sqlldr bad日志信息
(注:无)
5.查看数据库加载成功的数据
C:\sqlloader_exec\ppt_case12>sqlplus "scott/tiger"

SQL*Plus: Release 9.0.1.0.1 - Production on 星期二 8月 7 21:04:45 2012

(c) Copyright 2001 Oracle Corporation.  All rights reserved.


连接到:
Oracle9i Enterprise Edition Release 9.0.1.1.1 - Production
With the Partitioning option
JServer Release 9.0.1.1.1 - Production

SQL> select * from testload;

        F1 F2                             F3
---------- ------------------------------ ----------
         1 one row                        01-1月 -01
         2 two row                        01-1月 -02
         3 three row                      01-1月 -03
         4 four row                       01-1月 -04
         5 five row                       01-1月 -05
         6 six row                        01-1月 -06
         7 serven row                     01-1月 -07
         8 eight row                      01-1月 -08
         9 nine row                       01-1月 -09
        10 ten row

已选择10行。

SQL>

五 个人总结

除了在全局指定FIELDS TERMINATED BY ','外,亦可以控制文件field list区域指定各列间隔符.如果两者同时指定,则在field list区域优先级高于全局指定.此方便之处在于各列间间隔不在受全局设定单一限制.

六 资料参考引用

http://afy.itpub.net/post/1128/22073

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/11780477/viewspace-740306/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/11780477/viewspace-740306/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值