看样子是10g,新特性,9i是不可以的~
C

ocuments and SettingsRequieM>sqlplus mydb
SQL*Plus: Release 9.2.0.8.0 - Production on Thu Jul 17 18:40:13 2008
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Enter password:
Connected to:
Oracle9i Enterprise Edition Release 9.2.0.8.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.8.0 - Production
SQL> create table t (a number);
Table created.
Elapsed: 00:00:00.02
SQL> create index t_i on t(a);
Index created.
Elapsed: 00:00:00.00
SQL> insert into t values(1);
1 row created.
Elapsed: 00:00:00.00
SQL> alter index t_i unusable;
Index altered.
Elapsed: 00:00:00.00
SQL> select index_name,status from user_indexes where index_name='T_I';
INDEX_NAME STATUS
------------------------------ --------
T_I UNUSABLE
Elapsed: 00:00:00.00
SQL> insert into t values(1);
insert into t values(1)
*
ERROR at line 1:
ORA-01502: index 'MYDB.T_I' or partition of such index is in unusable state
Elapsed: 00:00:00.00
SQL>