5.2 移动原表空间内的表
--批量脚本:
SELECT 'alter table '||OWNER||'.'||TABLE_NAME||' move
tablespace NEW_TABLESPACE;' FROM DBA_TABLES WHERE TABLESPACE_NAME = 'OLD_TABLESPACE';
--示例:
alter table U1.T1 move tablespace NEW_TABLESPACE;
如果有分区表:
select 'alter table ' ||table_owner|| '.' || table_name || '
move partition ' || partition_name || ' tablespace
NEW_TABLESPACE;' as move_sql from dba_tab_partitions where tablespace_name='OLD_TABLESPACE';
如果有子分区表:
select 'alter table ' ||table_owner|| '.' || table_name || '
move subpartition ' || SUBPARTITION_NAME || ' tablespace
NEW_TABLESPACE;' as move_sql from DBA_TAB_SUBPARTITIONS
where tablespace_name='OLD_TABLESPACE';
5.3 查看索引情况
select index_name,index_type,table_name,table_owner,table_type,uniq
ueness,status from dba_indexes where tablespace_name = 'OLD_TABLESPACE';
5.4 重建索引
select 'alter index ' ||OWNER||'.'||index_name||' rebuild
online;' from dba_indexes where status <> 'VALID';
如果有分区索引:
select 'alter index '||a.table_owner||'.' ||b.index_name||'
rebuild partition '||a.partition_name||' tablespace
NEW_TABLESPACE parallel 8 online; ' from dba_tab_partitions
a,dba_ind_partitions b where
a.partition_name=b.partition_name and
a.tablespace_name='OLD_TABLESPACE';
如果有子分区索引:
select 'alter index '||a.table_owner||'.' ||b.index_name||'
rebuild subpartition '||a.partition_name||' tablespace NEW_TABLESPACE parallel 8 online; ' from
dba_tab_subpartitions a,dba_ind_subpartitions b where
a.partition_name=b.partition_name and
a.subpartition_name=b.subpartition_name and
a.tablespace_name='OLD_TABLESPACE';
如果有lob字段:
select 'alter table '||owner||'.'||table_name||
' move lob('||COLUMN_NAME||') store as (NEW_TABLESPACE);'from dba_lobs where TABLESPACE_NAME='OLD_TABLESPACE';