FastLoad错误 — SELECT Failed. 2652

SELECT * FROM   teradata_education. emp_fl;

在做查询时碰到2652错误。

SELECT Failed. 2652: Operation not allowed: Teradata_Education.emp_fl is being loaded.

2652 Operation not allowed: %DBID.%TVMID isbeing Loaded.

Explanation: This error occurs only when a user issues a request for a table that is being Fast/MultLoaded.

Generated By: AMP Steps.

For Whom: End User.

Notes: The table does exist, but it is not in a form in which it may be accessed.

Remedy: Wait until the Fast/Multi Load is finished, then resubmit the request.

原因:

我们从错误代码里可以看出,可能是因为FastLoad操作还没有完成,或因为FastLoad没有正常结束而导致表不可以查询。

解决办法:

查看fastload的log,看哪一步出错。如果是因为errorfiles所指定的error表已经存在,那就删除已经error表重新fastload。或使用其它error表。

FastLoad错误 — SELECT Failed. 2652

时间: 2024-10-21 22:20:09

FastLoad错误 — SELECT Failed. 2652的相关文章

DEBUG : Eclipse Debug 时出现 Cannot connect to VM select failed错误

Eclipse在执行Debug操作时, 出现“Eclipse Debug 时出现 "Cannot connect to VM select failed"”错误, 在网上查找该错误和 ipv4.ipv6 有关,但不知道具体原因. 解决方法如下: 搜索 "eclipse.ini" 文件,一般是在 eclipse 的安装目录, 添加下列控制参数: -Djava.net.preferIPv4Stack=true 即可. 此参数关掉了jvm的ipv6功能,可参考下列文章: 

fastload错误 — RDBMS error 2634

我们来看一下下面这条语句: BEGIN LOADING stu_flERRORFILES 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 sessi

SVN错误:Failed to load JavaHL Library

环境:jdk1.7(64bit),eclipse4.4(64bit).SVN1.10.3 问题:在利用subclipse同步资源时,报出错误提示 Failed to load JavaHL Library. These are the errors that were encountered: no libsvnjavahl-1 in java.library.path no svnjavahl-1 in java.library.path no svnjavahl in java.librar

iOS国际化时遇到的错误:read failed: the data couldn't be read because it isn't in the correct format.

事实上这个错误非常easy,就是当我们在国际化的时候,写key,写着写着就忘了加 ";" 所以查看一下自己的Localization文件就能够了 iOS国际化时遇到的错误:read failed: the data couldn't be read because it isn't in the correct format.

开启mongod服务(Mongo运行错误:Failed to connect 127.0.0.1:27017,reason:errno:10061由于目标计算机积极拒绝,无法连接)

问题:Mongo运行错误:Failed to connect 127.0.0.1:27017,reason:errno:10061由于目标计算机积极拒绝,无法连接 在Mongodb的安装过程中碰到的问题,首先了解一下Mongodb的安装步骤 1.在Mongodb官网下载对应的版本,下载地址https://www.mongodb.org/downloads 2.将下载的文件解压到C盘或D盘根目录下 3.通过cmd命令mkdir data在解压的mongodb下创建data文件夹(或者直接在Wind

iOS国际化时遇到的错误:read failed: the data couldn't be read because it isn't in the correct format.

其实这个错误很简单,就是当我们在国际化的时候,写key,写着写着就忘了加 ";" 所以查看一下自己的Localization文件就可以了 iOS国际化时遇到的错误:read failed: the data couldn't be read because it isn't in the correct format.

SSAS:OLE DB 错误: OLE DB 或 ODBC 错误 : Login failed for user 'NT Service\MSSQLServerOLAPService'

问题描述 按照微软官方教程尝试使用SSAS做OLAP时,出现如下错误信息: Severity Code Description Project File Line Suppression State Error OLE DB 错误: OLE DB 或 ODBC 错误 : Login failed for user 'NT Service\MSSQLServerOLAPService'.; 28000. 0 问题原因 该问题是由于连接SQL Server数据源的时候,产生了授权认证错误. 解决方案

ios常见错误之 Failed to instantiate the default view controller for UIMainStoryboardFile 'Main' - perhaps the designated entry point is not set?

Failed to instantiate the default view controller for UIMainStoryboardFile 'Main' - perhaps the designated entry point is not set? 这是因为给你的StoryBoard没有设置默认显示的controller, 解决方法: from:http://my.oschina.net/u/936286/blog/316565 ios常见错误之 Failed to instanti

swagger ui js 错误:Failed to execute 'serializeToString' on 'XMLSerializer': parameter 1 is not of type 'Node'.

经过排查,引发此错误的原因是,表中有一个字段名称为"NodeName",应该是在前台xml解析时引发冲突所致.我的解决办法是: 修改列名,修改映射. 如下: [Column("NodeName")] public string Name { get; set; } ps:说下我的思路,前台错误处打上断点,循环跳出(或者F8),注意观察出错时的节点名,见下图: 根据此法快速定位到解析错误的表名,然后根据排除法,一个一个注释掉字段,找到出错的字段.剩下的就好办了. sw