Oracle建索引时,我们为了建索引快,会加上并行,加上并行之后,此列索引就会是并行了。访问有并行度的索引时,CBO可能可能会考虑
oracle建索引时,我们为了建索引快,会加上并行,加上并行之后,此列索引就会是并行了。访问有并行度的索引时,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
Oracle 中并行度的设置需要考虑的因素
本文永久更新链接地址:
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号