因为不能在clob字段上建立索引,所以不能重建系统自动创建的索引(奇怪,系统自己又可以!).
解决的方法是:
sql>rename table table1 to table2;
sql>alter user uername default tablespace other_tablespace;
sql>create table1 as select * from table2;
sql>drop table2;
sql>alter user username default tablespace previous_tablespace;