ORA-28670: mapping table cannot be dropped due to an existing bitmap index ORACLE 报错 故障修复 远程处理
文档解释
ORA-28670: mapping table cannot be dropped due to an existing bitmap index
Cause: User attempted to drop the mapping table with NOMAPPING option when the IOT has one or more bitmap indexed.
Action: Drop the bitmap index(es) before dropping the mapping table.
这是Oracle数据库中的一条错误信息,表明存在一个与想要删除的映射表相关的位图索引,因此不能正常删除映射表。
官方解释
常见案例
一般处理方法及步骤
1.找出与映射表相关的位图索引,使用“ select index_name from user_indexes where table_name =blablabla;”语句。
2.删除该位图索引,使用“drop index blablabla;”命令。
3.删除映射表,使用“drop table blablabla;”命令。