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 中并行度的设置需要考虑的因素 http://www.linuxidc.com/Linux/2012-06/63361.htm更多Oracle相关信息见Oracle 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=12本文永久更新链接地址