Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Unable to rebuild index online

71610Jul 31 2007 — edited Aug 1 2007
CREATE TABLE TRAVEL.TESTIND
(
NAME NUMBER(10),
NO CHAR(8 BYTE),
DATEX DATE
);

CREATE INDEX TRAVEL.PK_TESTIND ON TRAVEL.TESTIND(NAME, NO);

ALTER TABLE TRAVEL.TESTIND ADD (
CONSTRAINT PK_TESTIND
PRIMARY KEY
(NAME, NO)
DEFERRABLE INITIALLY IMMEDIATE );

SQL> alter index PK_TESTIND rebuild online;
alter index PK_TESTIND rebuild online
*
ERROR at line 1:
ORA-08108: may not build or rebuild this type of index online


Any ideas how to rebuild this ndex?

Thanks
S~
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 29 2007
Added on Jul 31 2007
15 comments
2,895 views