Oracle Parallel __oracle

Source: Internet
Author: User
Tags create index

Parallel DDL

Sql> CREATE index idx_t3 on T1 (object_name,object_id) parallel;


The index has been created.


Sql> Select Index_name, degree from user_indexes where index_name= ' idx_t3 ';


No rows selected


Sql> Select Index_name, degree from user_indexes where index_name= ' idx_t3 ';


Index_name DEGREE
------------------------------------------------------------ ------------------------------------
Idx_t3 DEFAULT


sql> alter index IDX_T3 Noparallel;


The index has changed.


Sql> Select Index_name, degree from user_indexes where index_name= ' idx_t3 ';


Index_name DEGREE
------------------------------------------------------------ ------------------------------------
IDX_T3 1


See the parallelism of DDL statements after execution, the related objects have the degree of parallelism, so after the DDL is executed, it is best to reset the degree of parallelism of the object.


Parallel DML

Using parallel in SQL may not actually go in parallel, resulting in a longer time to take, and to use real parallelism

1alter session force parallel DML;

2alter sessoin enable parallel dml;+ parallel hint


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.