zoukankan      html  css  js  c++  java
  • sqlldr使用

    $ pwd
    /oracle/sqldr

    $ ls -ltr
    total 0
    -rw-r--r--    1 oracle   dba              93 Jan 21 15:08 cnaps2_dn.add
    -rw-r--r--    1 oracle   dba            4263 Jan 21 15:08 cnaps_pkg_info.add
    -rw-r--r--    1 oracle   dba            1419 Jan 21 15:08 create_table.sql
    -rw-r--r--    1 oracle   dba             116 Jan 21 15:17 cnaps2_dn.ctl
    -rw-r--r--    1 oracle   dba            1482 Jan 21 15:17 cnaps2_dn.log

    控制文件内容:
    $ cat  cnaps2_dn.ctl
    load data
    infile '/oracle/sqldr/cnaps2_dn.add'
    into table cnaps2_dn  fields terminated by '|'
    (
    BANK_NO,
    DN_VALUE
    )

    $ sqlldr cnaps2/cnaps2@devrac1 control=./cnaps2_dn.ctl

    SQL*Loader: Release 10.2.0.4.0 - Production on Tue Jan 21 15:17:42 2014

    Copyright (c) 1982, 2007, Oracle.  All rights reserved.

    Commit point reached - logical record count 1

    $ sqlldr cnaps2/cnaps2@devrac1 control=./cnaps_pkg_info.ctl

    SQL*Loader: Release 10.2.0.4.0 - Production on Tue Jan 21 15:49:17 2014

    Copyright (c) 1982, 2007, Oracle.  All rights reserved.

    Commit point reached - logical record count 64
    Commit point reached - logical record count 128
    Commit point reached - logical record count 192
    Commit point reached - logical record count 194

    APPEND INTO :向表里追加数据

    TRUNCATE :truncate 方式删除

    rows -- 常规路径绑定数组中或直接路径保存数据间的行数
              (默认: 常规路径 64, 所有直接路径)

  • 相关阅读:
    【交换】
    【数字对】
    【改造二叉树】
    【Begin】
    100以内所有质数的输出
    位运算符、|和||、&和&&的区别
    linux中vim编辑器三种模式及常用命令的使用
    静态代码块、构造代码块和构造函数的执行顺序
    字符乱码出现的原因及解决办法
    Springcloud-微服务
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13352434.html
Copyright © 2011-2022 走看看