欢迎光临
我们一直在努力

ORA-54605: CREATE_PC: scratch-tables/views (string) exist and need to be dropped ORACLE 报错 故障修复 远程处理

文档解释

ORA-54605: CREATE_PC: scratch-tables/views (string) exist and need to be dropped

Cause: Transient tables/views from a previous CREATE_PC operation were still in existence.

Action: Delete the invalid Point Cloud from the base table (for cleanup of scratch tables), and initialize and create the Point Cloud again. Alternately, use SDO_UTIL.DROP_WORK_TABLES with oidstring as the parameter.

ORA-54605是由于您正在执行CREATE_PC操作时发现已存在的scratch-tables/views而导致的行为。这个错误旨在提醒用户在执行CREATE_PC操作之前需要删除现有的scratch-tables/views。

官方解析:该错误表明要执行的操作类型需要删除现有的 “ scratch-tables/views ” 。

常见案例

一般处理方法及步骤

1.使用下面的SQL查找当前存在的scratch-tables/views:

SELECT *

FROM USER_VIEWS

WHERE UPPER(VIEW_NAME) LIKE ‘SCRATCH_%’;

2.准备删除scratch-tables/views,使用下面语句:

DROP VIEW view_name;

3.最后重新执行 CREATE_PC 操作。

赞(0)
【声明】:本博客不参与任何交易,也非中介,仅记录个人感兴趣的主机测评结果和优惠活动,内容均不作直接、间接、法定、约定的保证。访问本博客请务必遵守有关互联网的相关法律、规定与规则。一旦您访问本博客,即表示您已经知晓并接受了此声明通告。