开发者

oracle indexes to be executed in parallel

开发者 https://www.devze.com 2023-01-21 15:52 出处:网络
In oracle, Can i run index rebuild in parallel , all indexes开发者_运维知识库 belonging to same table.

In oracle, Can i run index rebuild in parallel , all indexes开发者_运维知识库 belonging to same table.

We have a dyanmic sql procedure for rebuilding indexes, so can call that procedure in parallel for 3 indexes belonging to same table.

Regards, Shi


I think it should cause no problems, you might want to check if the columns of the index overlap or not.

refer this for more info:

http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:2913600659112

Thanks


You must create indexes on existing table with data with PARALLEL ON and you can recreate them afterwards with NO-PARALLEL to avoid further processing degradation while insert data.

0

精彩评论

暂无评论...
验证码 换一张
取 消