關於move table和rebuild index批量操作的記錄
批量move oldtablespace表空間下的table到newtablespace,查詢並執行查詢結果即可
select 'alter table '||table_name||' move tablespace newtablespace'
from user_all_tables
where table_space='oldtablespace';
批量rebuild oldtablespace表空間下的index到newtablespace,查詢並執行查詢結果即可
select 'alter index '|| index_name || ' rebuild tablespace newtablespace;'
from user_indexes
where tablespace_name='oldtablespace' ;
from user_indexes
where tablespace_name='oldtablespace' ;
帶有lob欄位的表做move時lob欄位需要單獨move
ALTER TABLE AUDIT_RECORD MOVE LOB(lobrow1) STORE AS (TABLESPACE newtablespace);
ALTER TABLE AUDIT_RECORD MOVE LOB(lobrow2) STORE AS (TABLESPACE newtablespace);
ALTER TABLE AUDIT_RECORD MOVE TABLESPACE newtablespace;
或者
ALTER TABLE test2 MOVE
另外exp/imp遷移帶有lob欄位的 在執行IMP時需要將原lob欄位所在的tablespace建好再匯入,匯入後再考慮move到其他tablespace
exped/imped可以用remap_tablespace引數指定將資料匯入到指定的表空間,無需考慮該項
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29320885/viewspace-1717050/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 測試index online rebuild故障記錄IndexRebuild
- 關於分割槽表的move操作
- alter table table_name move ; 在自身表空間move是如何操作的?
- 關於rebuild index online 及drop index後重建問題RebuildIndex
- 【羅玄】從鎖的角度看rebuild index online和rebuild indexRebuildIndex
- alter index rebuild和rebuild online的區別IndexRebuild
- rebuild index 和 recreate index (重新建立index) 的區別RebuildIndex
- rebuild indexRebuildIndex
- index rebuildIndexRebuild
- 聊聊索引Index Rebuild和Rebuild Online(下)索引IndexRebuild
- 聊聊索引Index Rebuild和Rebuild Online(上)索引IndexRebuild
- alter table move 和 alter table shrink space的區別
- 關於table的一些操作
- alter index ind1 rebuild 和alter index ind1 rebuild onlineIndexRebuild
- rebuild index 排序RebuildIndex排序
- sybase rebuild indexRebuildIndex
- ORACLE中index的rebuildOracleIndexRebuild
- ELK批量刪除索引及叢集相關操作記錄索引
- Index rebuild --case 1IndexRebuild
- alter index rebuild 與 rebuild onlineIndexRebuild
- INDEX REBUILD和INDEX REORGANIZE和UPDATE STATISTICS是否涉及Sch-M的案例分析IndexRebuild
- alter index rebuild與index_statsIndexRebuild
- ALTER TABLE MOVE和SHRINK SPACE區別
- Index Online RebuildIndexRebuild
- best practice of rebuild your partition table local index online by using: "update indexes"RebuildIndex
- c++ Builder 關於檔案和目錄的操作C++UI
- table move 與 shrink 的區別
- Oracle的move操作Oracle
- Oracle alter index rebuild 說明OracleIndexRebuild
- index rebuild online的問題IndexRebuild
- 大資料量rebuild index的經歷大資料RebuildIndex
- Nginx 負載均衡的Cache快取批量清理的操作記錄Nginx負載快取
- 關於索引是否該rebuild的問題索引Rebuild
- create index , rebuild index troubleshooting 索引故障解決IndexRebuild索引
- 關於move tablespace的問題總結
- 關於Spring Aop和事務記錄Spring
- git相關操作,個人記錄Git
- 加快create / rebuild index的3個點(zt)RebuildIndex