码迷,mamicode.com
首页 > 数据库 > 详细

fastload错误 — RDBMS error 2634

时间:2014-06-30 14:31:51      阅读:429      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   strong   width   os   

我们来看一下下面这条语句:
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;查看相关的错误信息;

fastload错误 — RDBMS error 2634,布布扣,bubuko.com

fastload错误 — RDBMS error 2634

标签:style   blog   color   strong   width   os   

原文地址:http://www.cnblogs.com/toughhou/p/3813694.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!