Create index with parallel or nologging option in Oracle

Creation of index with nologging or parallel option

During creation of index with nologging and parallel option, you will increase the speed of creating index process.
Because Nologging will not generate the redo logs for archive and parallel parameter use the multiple process to create the Index, which will increase the speed.
Note: Parallel option available in Enterprise edition.

Disable the log generation during creation of index

create index inv_idx1 on inv(inv_id, inv_id2)
nologging tablespace inv_mgmt_index;

Increase the degree of parallelism for creating index on large table

create index inv_idx1 on inv(inv_id)
parallel 4 tablespace inv_mgmt_data;

Verify the index degree

select index_name,logging, degree from user_indexes;

Rebuild index with parallel and no logging mode:

alter index inv_idx1 rebuild parallel 4 nologging;

2 thoughts on “Create index with parallel or nologging option in Oracle

  1. Pingback: Oracle crea un índice en paralelo

  2. Pingback: Opción en línea de creación de índice de Oracle

Leave a Reply