You are on page 1of 1

Steps while creating an online index rebuild: - step 1: OIB online index rebuild - creates an IOT journal table

to keep track of changes while OIB is in progress and merge all changes from the journal tabl e to complete the index build operation. - step 2: if there is table with structure of (A number, B number , C char(100) , D number) and to create an index on (A,B,C) column, Oracle would create the j ournal table like: create table ORACLE.SYS_JOURNAL_18155 ( C0 number , C1 number , C2 va rchar2(100) , opcode char(1) , partno number , rid rowid , primary key(C0,C1,C2) ) organization index; - step 3: OIB acquire a DML enqueue lock on the table to lock the table exclusi vely while preventing the new DML's to go through.

You might also like