ORA-01502 index 'string.string' or partition of such index is in unusable state  Cause An attempt has been made to access an index or index partition that has been ed unusable by a direct load or by a DDL operation.  
Action DROP the specified index, or REBUILD the specified index, or REBUILD the unusable index partition.  

解决方案 »

  1.   

    select * from dba_tables;或者
    select * from user_tables;
      

  2.   

    alter index LIURONGHUA.SYS_C002737 rebuild
      

  3.   

    可以随便找一个数据库工具,如Toad,PL/SQL Developer,OEM等等都很容易找到表及其相关的信息,如索引等。
    OEM是Oracle Enterprise Manager,是Oracle客户端自带的。
      

  4.   

    alter index LIURONGHUA.SYS_C002737 rebuild tablespace indx
    删除一个表:drop table table_name
      

  5.   

    对了,是不是更改表空间就会有问题啊
    我的其他的表格可以使用啊。看这个错误好像是属于liuronghua模式下的一个特殊的索引,应该对系统没有什么影响吧?