zoukankan      html  css  js  c++  java
  • SQL*Loader之CASE2

    CASE2

    1. 控制文件

    [oracle@node3 ulcase]$ cat ulcase2.ctl

    -- NAME
    -- ulcase2.ctl - SQL*Loader Case Study 2: Loading Fixed-Format Files
    --
    -- DESCRIPTION
    -- This control file demonstrates the following:
    -- Use of a separate data file.
    --
    -- Data conversions.
    --
    -- TO RUN THIS CASE STUDY:
    -- 1. Before executing this control file, log in to SQL*Plus as
    --    scott/tiger. Enter @ulcase1 to execute the SQL script for
    --    this case study. This prepares and populates tables and
    --    then returns you to the system prompt. It is the same script
    --    used to prepare for case study 1, so if you have already
    --    run case study 1, you can skip this step.
    --
    -- 2. At the system prompt, invoke the case study as follows:
    -- sqlldr USERID=scott/tiger CONTROL=ulcase2.ctl LOG=ulcase2.log
    --
    -- NOTES ABOUT THIS CONTROL FILE
    -- The LOAD DATA statement is required at the beginning of the
    -- control file.
    --
    -- The name of the file containing data follows the INFILE parameter.
    --
    -- The INTO TABLE statement is required to identify the table to
    -- be loaded into.
    --
    -- empno, ename, job, and so on are names of columns in table emp.
    -- The datatypes (INTEGER EXTERNAL, CHAR, DECIMAL EXTERNAL) identify
    -- the datatype of data fields in the file, not of corresponding
    -- columns in the emp table.
    --
    -- Note that the set of column specifications is enclosed in
    -- parentheses.
    --
    -- Records loaded in this example from the emp table contain
    -- department numbers. Unless the dept table is loaded first,
    -- referential integrity checking rejects these records (if
    -- referential integrity constraints are enabled for the emp table).
    
    --
    LOAD DATA
    INFILE 'ulcase2.dat'
    INTO TABLE EMP
    
    ( EMPNO    POSITION(01:04) INTEGER EXTERNAL,
      ENAME    POSITION(06:15) CHAR,
      JOB      POSITION(17:25) CHAR,
      MGR      POSITION(27:30) INTEGER EXTERNAL,
      SAL      POSITION(32:39) DECIMAL EXTERNAL,
      COMM     POSITION(41:48) DECIMAL EXTERNAL,
      DEPTNO   POSITION(50:51) INTEGER EXTERNAL)                        

    2. 数据文件

    [oracle@node3 ulcase]$ cat ulcase2.dat

    7782 CLARK      MANAGER   7839  2572.50          10
    7839 KING       PRESIDENT       5500.00          10
    7934 MILLER     CLERK     7782   920.00          10
    7566 JONES      MANAGER   7839  3123.75          20
    7499 ALLEN      SALESMAN  7698  1600.00   300.00 30
    7654 MARTIN     SALESMAN  7698  1312.50  1400.00 30
    7658 CHAN       ANALYST   7566  3450.00          20

    执行后结果:

    SQL> select * from emp;
    
    EMPNO ENAME      JOB       MGR        HIREDATE  SAL       COMM       DEPTNO
    ----- ---------- --------- ---------- --------- --------- ---------- ----------
     7782 CLARK      MANAGER     7839                2572.5              10
     7839 KING       PRESIDENT                       5500                10
     7934 MILLER     CLERK       7782                920                 10
     7566 JONES      MANAGER     7839                3123.75             20
     7499 ALLEN      SALESMAN    7698                1600      300       30
     7654 MARTIN     SALESMAN    7698                1312.5    1400      30
     7658 CHAN       ANALYST     7566                3450                20
    
    7 rows selected.

     总结:在本例中

          1> INFILE 'ulcase2.dat'指定外部数据源

          2> The datatypes (INTEGER EXTERNAL, CHAR, DECIMAL EXTERNAL) identify  the datatype of data fields in the file, not of corresponding  columns in the emp table.如果数据就在控制文件中,不用指定INTEGER EXTERNAL, CHAR, DECIMAL EXTERNAL等数据类型。

          3> 在本例中,因为数据排列比较规则,所以可以在列中指定所需数据的具体位置POSITION(01:04)

  • 相关阅读:
    Java数据类型与运算符
    [DEBUG] Springboot打包jar/war后访问包外的路径
    Html大段文本自适应换行显示-SSM
    [DEBUG] ubuntu pip安装成功却无法import
    [DEBUG] ubuntu mysql root@localhost改了密码还是进不去ERROR 1698 (28000)
    [DEBUG] Spring boot前端html无法下载示例文件
    [DEBUG] spring boot在eclipse中用maven打包成jar访问templates报500错误
    [DEBUG] java中用Runtime调用python 简单程序输出null
    SpringBoot中service注入失败(A component required a bean of type 'XXService' that could not found)
    Numpy安装报错:试过N种安装方法终于
  • 原文地址:https://www.cnblogs.com/ivictor/p/3980932.html
Copyright © 2011-2022 走看看