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;”命令。
香港美国云服务器首选后浪云,2H2G首月10元开通。
后浪云(www.IDC.Net)提供简单好用,价格厚道的香港/美国云服务器和独立服务器。IDC+ISP+ICP资质。ARIN和APNIC会员。成熟技术团队15年行业经验。
版权声明:
作者:后浪云
链接:https://www.idc.net/help/46654/
文章版权归作者所有,未经允许请勿转载。
THE END