_b_tree_bitmap_plans
修改语句
alter system set "_b_tree_bitmap_plans"=false scope=both

 

此语句用处
_b_tree_bitmap_plans参数是指是否将索引转换为bitmap索引然后执行

 


更具熊哥讲解,如有两个字段A,B都有btree索引,oracle有可能将这两个索引转换成bitmap索引然后做and操作得出结果集。
如果改为false就会选用其中的一个索引,走btree的索引

 隐含参数_b_tree_bitmap_plans隐含参数_b_tree_bitmap_plans

删除一个索引后就正常了

 

 

相关文章:

  • 2022-12-23
  • 2021-07-30
  • 2022-02-17
  • 2022-12-23
  • 2021-05-27
  • 2021-12-12
猜你喜欢
  • 2021-11-17
  • 2021-05-26
  • 2022-12-23
  • 2021-08-20
  • 2022-12-23
  • 2021-05-19
  • 2021-12-25
相关资源
相似解决方案