zoukankan      html  css  js  c++  java
  • FastLoad错误 — RDBMS error 2634

    我们来看一下下面这条语句:
    BEGIN LOADING stu_fl
    ERRORFILES error_1, error_2;
     
    如果此时已经存在error_1或error_2表,那么将会报错,信息如下:
    0008 BEGIN LOADING stu_fl
         ERRORFILES error_1, error_2;
    
    **** 07:41:08 Number of FastLoad sessions requested = 4
    **** 07:41:08 Number of FastLoad sessions connected = 2
    **** 07:41:08 FDL4808 LOGON successful
    **** 07:41:08 RDBMS error 2634: Existing ERROR table(s) or Incorrect use of stu_fl in  Fast Load operation.
    **** 07:41:08 Delete the Error Tables or fix the BEGIN LOADING statement
    查了下手册,错误代码2634的相关信息如下:
    2634 Existing ERROR table(s) or Incorrect use of
    %TVMID in Fast Load operation.
    Explanation: This error occurs if the table/error table(s) specified either;
    (a) existed before the start of the Fast Load, or
    (b) did not indicate that it was involved in this specific Fast Load.
     
    Notes: This error means either that the user has referenced existing tables for the ERRORFILES in a Fast Load that is not restarting, or that incorrect tables were
    referenced in a restart of a Fast Load.
     
    Remedy: If this is not a restart of a previous Fast Load, delete the referenced error files. If this is a restart, correct the Begin Loading Statement so that the error files are those specified for the original Fast Load.
     
     
    我们很明显地可以看出,这个错误的原因是我们在不是restarting的fastload中,ERRORFILES引用了已经存在的表。
     
     
    解决办法:
     
    在fastload开始之前加入以下语句删除errorfiles所指定的表:
     
    DROP TABLE error_1; /* error table ,internal to fast load utility needed to be defined */
    DROP TABLE error_2; /* error table ,internal to fast load utility needed to be defined */
     
     
    总结:
    BEGIN LOADING stu_fl
    ERRORFILES error_1, error_2;
     
    1. 在一个不是restarting的fastload中,如果errorfiles指定的表已经存在,就会报2634的错;
    2. 如果fastload的过程中不出错,error_1, error_2是不会自动生成的;
    3. 我们可以select * from error_1;查看相关的错误信息;
  • 相关阅读:
    JDK的命令详解
    聊天室java socket
    怎么实现利用Java搜索引擎收集网址的程序
    Hibernate实现对多个表进行关联查询
    如何学好J2ME?
    谈谈Java工程师应该具有的知识
    【经营智慧】005.眼光盯着未来
    【成功智慧】002.对任何小事都不要掉以轻心
    【经营智慧】008.要想赚钱,就得打破既有的成见
    【思维智慧】004.砸碎障碍的石头,把它当做钥匙
  • 原文地址:https://www.cnblogs.com/toughhou/p/3813694.html
Copyright © 2011-2022 走看看