ORA-14073: bootstrap table or cluster may not be truncated ORACLE 报错 故障修复 远程处理

文档解释

ORA-14073: bootstrap table or cluster may not be truncated

Cause: User attempted to truncate a bootstrap table or cluster which is illegal

Action: Ensure that the table (or cluster) being truncated is not a bootstrap table (or cluster)

ORA-14073:引导表或群集无法被截断

官方解释

ORA-14073表示用户未能截断引导表或群集的内部存储引擎表而不能进行表操作,如TRUNCATE操作。系统阻止此行为,并报出此错误。

常见情况:

当用户尝试执行TRUNCATE TABLE命令对引导或群集表进行截断操作时,会出现ORA-14073错误。

正常处理方法及步骤

1. 完整备份所有相关表及数据;

2. 使用DROP TABLE TABLE ‘表名’ CASCADE CONSTRAINTS;命令丢弃表;

3. 如果是引导表,使用CREATE BOOTSTRAP TABLE语句重新创建;

4. 以正确的初始值填充表;

5. 如果是群集表,使用CREATE CLUSTER语句重新创建;

6. 最后执行ALTER TABLE附加约束来恢复表的相关信息。


数据运维技术 » ORA-14073: bootstrap table or cluster may not be truncated ORACLE 报错 故障修复 远程处理