ALTER INDEX <index_Name> REBUILD ONLINE PARALLEL 6 PCTFREE 10 INITRANS 2;
ALTER INDEX CS_BMO.WBS_ENTITIES_IDX4 REBUILD ONLINE PARALLEL 6 PCTFREE 10 INITRANS 2;
The above command will really intent to change the default degree of parallelism or it should only for that particular operation.
According to my assumption DOP of 6 for that particular operation, but after executing it I can see it changed default value of degree to 6.
Please help me to understand more on this.
Below support answer:
Tedper-Oracle has mentioned that :
"When you issued the ALTER INDEX REBUILD statement, you hadn't really changed the default degree of parallelism. You'd just requested a DOP of four for that particular operation."