Oracle批次修改使用者表table的表空間
由於開發人員把ess 專案下的大部分物件放到user 表空間中,用imp/exp 匯入正式庫後,ess使用者的物件還是在users 表空間中.為了把ESS 的物件放到ess 預設的表空間ess中,我按如下幾
步操作:
1 找出要修改表空間的物件:
select * from dba_tables where owner='ESS' and tablespace_name = 'USERS';
select * from dba_INDEXES where table_owner='ESS' and tablespace_name = 'USERS';
2 . 生成批次修改的sql 語句
select 'alter table ess.' || table_name || ' move tablespace ess;'
from dba_tables where wner='ESS' and tablespace_name = 'USERS';
select 'alter index ess.'||index_name||' rebuild online nologging tablespace ess;'
from DBA_indexes
WHERE table_owner='ESS' and tablespace_name = 'USERS'
把生成sql 語句導到 到ess_table.txt和ess_index.txt 檔案中
3.因為我們這裡欄位有clob型別,clob預設會建立索引,所以移動的時候要先移動clob欄位所產生的索引。
SELECT 'alter table ' ||t.table_name ||
' move tablespace ess lob (' || t.column_name ||
') store as(tablespace ess);' v_sql
FROM user_lobs t
4 檢查users 表空間,看看ess 使用者的物件是不是少了
步操作:
1 找出要修改表空間的物件:
select * from dba_tables where owner='ESS' and tablespace_name = 'USERS';
select * from dba_INDEXES where table_owner='ESS' and tablespace_name = 'USERS';
2 . 生成批次修改的sql 語句
select 'alter table ess.' || table_name || ' move tablespace ess;'
from dba_tables where wner='ESS' and tablespace_name = 'USERS';
select 'alter index ess.'||index_name||' rebuild online nologging tablespace ess;'
from DBA_indexes
WHERE table_owner='ESS' and tablespace_name = 'USERS'
把生成sql 語句導到 到ess_table.txt和ess_index.txt 檔案中
3.因為我們這裡欄位有clob型別,clob預設會建立索引,所以移動的時候要先移動clob欄位所產生的索引。
SELECT 'alter table ' ||t.table_name ||
' move tablespace ess lob (' || t.column_name ||
') store as(tablespace ess);' v_sql
FROM user_lobs t
4 檢查users 表空間,看看ess 使用者的物件是不是少了
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27036311/viewspace-1766789/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle新建使用者、表空間、表Oracle
- oracle表空間不足:ORA-01653: unable to extend tableOracle
- Oracle表空間Oracle
- oracle 表空間Oracle
- oracle 建立表空間和使用者Oracle
- Oracle建立表空間和使用者Oracle
- Oracle中新建表空間、使用者Oracle
- oracle表空間的整理Oracle
- oracle 表移動表空間Oracle
- Oracle表移動表空間Oracle
- 增加oracle表空間Oracle
- oracle temp 表空間Oracle
- Oracle臨時表空間檢視、新增臨時表空間資料檔案、修改預設臨時表空間 方法!Oracle
- table/index/LOBINDEX遷移表空間Index
- oracle新建使用者,表空間,並授權Oracle
- Oracle 19C 建立使用者&表空間Oracle
- Oracle新建表空間、使用者及授權Oracle
- Oracle 建立表空間和使用者指令碼Oracle指令碼
- Oracle 批量建表空間Oracle
- Oracle清理SYSAUX表空間OracleUX
- oracle建立使用者,表空間,臨時表空間,分配許可權步驟詳解Oracle
- Oracle的表空間quota詳解Oracle
- Oracle OCP(47):表空間的建立Oracle
- Oracle 刪除使用者、表空間、資料檔案、使用者下的所有表Oracle
- MySQL InnoDB File-Per-Table表空間MySql
- Oracle Temp 表空間切換Oracle
- Oracle 表空間增加檔案Oracle
- Oracle OCP(49):表空間管理Oracle
- Oracle表空間收縮方案Oracle
- Oracle RMAN 表空間恢復Oracle
- oracle建立臨時表空間和資料表空間以及刪除Oracle
- oracle級聯刪除使用者,刪除表空間Oracle
- 當使用者無限制使用表空間配額且表空間有足夠空間時出現超出表空間的空間限額
- Oracle中表空間、表、索引的遷移Oracle索引
- 16、表空間 建立表空間
- oracle匯出使用者、表空間和角色的建立語句Oracle
- oracle11g 查詢臨時表空間的使用率和正在使用臨時表空間的使用者Oracle
- oracle臨時表空間相關Oracle
- oracle sql 表空間利用率OracleSQL