日期:2014-05-16  浏览次数:20691 次

Oracle强制删除被使用中的索引
1.使用system用户登陆。
2.查询表索引名称
select index_name from dba_indexes where  table_name ='TAB_NAME'

3.强制删除索引
drop index user.indexname force --”user“:索引所属数据库用户。“indexname”:第2步查询出的索引名称。