第一条,clob的索引别乱动

 ALTER TABLE table_a MOVE TABLESPACE Tbs_tb

LOB (ATTRIBUTE) STORE AS(TABLESPACE tbs_lob);

快速指南:

alter index schema.index_1 rebuild tablespace TBS_IDX;

批量的话可以写个sql,例如:

select 'alter index '||a.owner||'.'||a.index_name||' rebuild tablespace TBS_IDX;',

a.owner,a.index_name,a.tablespace_name from dba_indexes a 

where a.Owner='USER_A'

order by a.owner,a.table_name;