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, 所有直接路径)

  • 相关阅读:
    绳关节(b2RopeJoint)
    公式推导 圆面积公式 圆周长公式
    ALTER TABLE causes auto_increment resulting key 'PRIMARY'
    MySQL通过Binlog恢复删除的表
    Barracuda VS antelope
    mysqldump 参数说明
    MySQL复制
    MySQL Server-id的作用
    MySQL 简洁连接数据库方式
    Kill 所有MySQL进程
  • 原文地址:https://www.cnblogs.com/zhaoyangjian724/p/3797948.html
Copyright © 2011-2022 走看看