ORA-28664: a partitioned table may not be coalesced as a whole ORACLE 报错 故障修复 远程处理
文档解释
ORA-28664: a partitioned table may not be coalesced as a whole
Cause: User attempted to coalesce a partitioned IOT using ALTER TABLE COALESCE statement, which is illegal
Action: Coalesce the table a partition at a time (using ALTER TABLE MODIFY PARTITION COALESCE)
ORA-28664: 分区表不能作为整体来合并。
官方解释
常见案例
当用户尝试执行 Coalesce 命令时,如果表已经被分区,就会出现 ORA-28664 错误。
一般处理方法及步骤
1. 首先将表的分区删除,可以采用 ALTER TABLE DROP PARTITION 命令实现;
2. 然后可以使用 Coalesce 命令来合并表空间;
3. 最后可以选择重新添加该表的分区,采用 ALTER TABLE ADD PARTITION 命令来实现。