alter index unusable 無法起作用的情況 zt

asword發表於2009-03-23
http://www.itpub.net/viewthread.php?tid=1141811&extra=&page=4[@more@]

SQL> select * from v$version;

BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
PL/SQL Release 10.2.0.1.0 - Production
CORE 10.2.0.1.0 Production
TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 - Production



1.用來實現唯一約束的索引



SQL> create table test(id int);

表已建立。

SQL> create index i_test_1 on test(id);

索引已建立。

SQL> alter table test add unique(id) using index i_test_1;

表已更改。

SQL> alter index i_test_1 unusable;

索引已更改。

SQL> insert into test values(1);
insert into test values(1)
*
第 1 行出現錯誤:
ORA-01502: 索引 'SYS.I_TEST_1' 或這類索引的分割槽處於不可用狀態



2.用來實現主鍵的索引


SQL> drop table test;

表已刪除。

SQL> create table test(id int);

表已建立。

SQL> create index i_test_1 on test(id);

索引已建立。

SQL> alter table test add primary key(id) using index i_test_1;

表已更改。

SQL> alter index i_test_1 unusable;

索引已更改。

SQL> insert into test values(1);
insert into test values(1)
*
第 1 行出現錯誤:
ORA-01502: 索引 'SYS.I_TEST_1' 或這類索引的分割槽處於不可用狀態



3.唯一索引



SQL> drop table test;

表已刪除。

SQL> create table test(id int);

表已建立。


SQL> create unique index i_test_1 on test(id);

索引已建立。

SQL> alter index i_test_1 unusable;

索引已更改。

SQL> insert into test values(1);
insert into test values(1)
*
第 1 行出現錯誤:
ORA-01502: 索引 'SYS.I_TEST_1' 或這類索引的分割槽處於不可用狀態


ps:臨時表的索引無法unusable

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/82387/viewspace-1019312/,如需轉載,請註明出處,否則將追究法律責任。

相關文章