1 。修改表的空间
alter table TABLE_NAME move tablespace TABLESPACENAME
查询当前用户下的所有表
选择'alter table'|| table_name ||' 移动表空间tablespacename;' 来自 user_tables;
2.修改表的索引的空间
alter index INDEX_NAME rebuild tablespace TABLESPACENAME
查询当前用户下的所有索引select'alter
index'|| index_name ||' 重建表空间tablespacename;' from user_indexes;