Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ALTER INDEX with Parallel and Nologging

user10566312Sep 14 2015 — edited Sep 14 2015

I want to move some indexes to another tablespace. For that I am using the below SQL:

ALTER INDEX xyz  REBUILD TABLESPACE TS_INDX01 NOLOGGING PARALLEL 8;

I am using NOLOGGING and PARALLEL thinking it will speed-up the movement process. But now I am confused because I think it will change the property of the index also, as in, when we create an index we specify some parallel and logging properties.

So I want to understand:

1. Will the above SQL change the properties of the index?

2. How can I view the existing nologging and parallel properties of an index?

This post has been answered by Karthick2003 on Sep 14 2015
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 12 2015
Added on Sep 14 2015
4 comments
5,649 views