just what I was looking for
A reader, May 03, 2004 - 10:40 am UTC
The actual command to create a index I had gotten out of the DDL and was like -
CREATE INDEX ...table, columns REVERSE PCTFREE 10 INITRANS 2 MAXTRANS 255 STORAGE(INITIAL
100M NEXT 100M FREELISTS 1 FREELIST GROUPS 1) TABLESPACE "PSIIDX" NOLOGGING
PARALLEL ( DEGREE 5 INSTANCES 1) ;
So I think the answer is yes to parallel and nologging, but I didn't raise the sort_area_size on the session level. Most of my sort area would peak out I think 600 thousand to 800 thousand and then stop.
Tom's right - increase sort area size
Mark Coleman, May 03, 2004 - 3:45 pm UTC
Tom's absolutely correct. If I move indexes I always alter session set sort_area_size = some big number, like 100M or 256M in bytes (if you have the resources). It makes an index build go a lot faster.