HOW to create local PK index using PARALLEL
where "PARALLEL 8 NOLOGGING" should be wroten?
alter table TD.VEH_UPLOAD_LOC
add constraint PK_VEH_UPLOAD_LOC primary key (VEH_UPLOAD_LOC_ID, CREATED_TIMSTM)
local
tablespace TD_IDX_P001
pctfree 10
initrans 100
maxtrans 255
storage
(
initial 64K
next 1M
minextents 1
maxextents unlimited
)
PARALLEL 8 NOLOGGING;