Créer un index sur une table existante Oracle

Est-il sûr de créer un index sur une table existante dans oracle?

Comme ceci:

CREATE INDEX table_sample_ix03
      ON table_sample
(
  col4,
  col22
)
TABLESPACE data
STORAGE
(
  INITIAL        10M    NEXT          2M
  MINEXTENTS      1     MAXEXTENTS  100
  PCTINCREASE     0
)
;

source d'informationauteur Michael | 2011-08-10