I am creating an INDEX for a datawarehouse table w/ 200M rows.

the index is created each night using 'NOPARALLEL' and takes 4 hours to finish. Just wondering if I could use the 'PARALLEL_INDEX' function in the create script to help cut down on some of that time, or any other suggesstions about parallel processing for building an index on a DW table.


CURRENT SCRIPT:
CREATE INDEX XXX ON XXX
(XXX)
LOGGING)
NOPARALLEL;