本帖最后由 郑全 于 2020-3-5 22:29 编辑
建索引时。我们为了建索引快。会加上并行,加上并行之后。此列索引就会是并行了。
訪问有并行度的索引时,CBO可能可能会考虑并行运行。这可能会引发一些问题,如在server资源紧张的时候用并行会引起更加严重的争用。当使用并行后,须要把并行度改回来。
SQL> create table bigtab as select * from dba_objects;
SQL> create index ind_bigtab_obj_id on test(object_id) parallel 4 ;
--检查并行度:
SQL> select s.degree
from dba_indexes s
where s.index_name = upper('ind_bigtab_obj_id');
DEGREE
----------------------------------------
4
--取消并行度
SQL> alter index ind_bigtab_obj_id noparallel;
--确认修改回来
SQL> select s.degree
from dba_indexes s
where s.index_name = upper('ind_bigtab_obj_id');
DEGREE
----------------------------------------
1
|