Chinaunix首页 | 论坛 | 博客
  • 博客访问: 115471
  • 博文数量: 28
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 205
  • 用 户 组: 普通用户
  • 注册时间: 2014-01-12 15:22
个人简介

没有挫败,只有暂未成功而已。

文章分类

全部博文(28)

文章存档

2018年(28)

我的朋友

分类: Oracle

2018-10-24 15:31:04

  建索引时,我们为了建索引快,会加上并行,加上并行之后,此列索引就会是并行了。访问有并行度的索引时,CBO可能可能会考虑并行执行,这可能会引发一些问题,如在服务器资源紧张的时候用并行会引起更加严重的争用。当使用并行后,需要把并行度改回来。
SQL> drop table test purge;

SQL> create table test as select * from dba_objects;
SQL> create index ind_t_object_id on test(object_id) parallel 4 ;
SQL> select s.degree
      from dba_indexes s
     where s.index_name = upper('ind_t_object_id');
DEGREE
----------------------------------------
4

SQL> alter index ind_t_object_id noparallel;

SQL> select s.degree
      from dba_indexes s
     where s.index_name = upper('ind_t_object_id');
DEGREE
----------------------------------------
1

阅读(2383) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~