--正常情況下的修改指令碼:
--1.修改表的空間
alter table table_name move tablespace tablespacename
--查詢當前使用者下的所有表
select 'alter table '|| table_name ||' move tablespace tablespacename;' from user_all_tables;
--2.修改表的索引的空間
alter index index_name rebuild tablespace tablespacename
--查詢當前使用者下的所有索引
select 'alter index '|| index_name ||' rebuild tablespace tablespacename;' from user_indexes;
--3.修改分割槽表所在索引
alter table t_train_hours move partition part_201309 tablespace ts_yycgps_data;
alter table t_train_hours move partition part_201310 tablespace ts_yycgps_data;
alter table t_train_hours move partition part_201311 tablespace ts_yycgps_data;
ORACLE 表和索引遷移表空間
表做空間遷移時,使用如下語句 例1 alter table tb name move tablespace tbs name 索引表空間做遷移,使用如下語句 例2 alter index index name rebuild tablespace tbs name 對於含有lob欄位的表,在建立時,...
表空間表使用者索引表空間
轉 案例一 建立表空間及使用者 第1步 建立臨時表空間 create temporary tablespace ivms86x0 temp 測試成功!註記 表空間名字不能重複,即便儲存的位置不一致,但是dbf檔案可以一致 tempfile i oracle oradata oracle11g ivm...
oracle遷移表空間
可遷移表空間 使用可遷移表空間 transportable tablespaces 的特性在資料庫之間移動大量資料,效能比export import和unload load要快很多,因為它遷移表空間只需要複製資料檔案和插入表空間元資料到目標資料庫中。遷移表空間對以下應用特別有用 分階段將oltp的資...