oracle 表空間下資料檔案遷移的三種方法
上個星期週末幫客戶做了一個歷史表空間的資料檔案遷移案例,主要是換儲存,有raid 0+1 遷移到 raid 5 儲存型別
上,下面記錄下幾種遷移方法,檔案系統是裸裝置型別,首先要在raid 5儲存上建好相應的lv 裸裝置資料檔案,注意大小一定要和原來一樣大或更大。
1. 用cplv的方法
alter tablespace tablespace_name offline;
cplv old_lv to new_lv
alter database rename file 'old_lv' to 'new_lv';
alter tablespace tablespace_name online;
2.用rman copy的方法
sqlplus 下
alter tablespace tablespace_name offline;
rman 工具下
rman target /
copy datafile 'old_lv ' to 'new_lv';
sqlplus 下
alter database rename file 'old_lv' to 'new_lv';
alter tablespace tablespace_name online;
3. 全部用rman工具+rman copy 來實現的方法 一個指令碼搞定
run{
allocate channel c1 type disk;
sql 'alter tablespace tablespace_name offline';
copy datafile 'old_lv' to 'new_lv';
set newname for datafile 6 to 'new_lv';
switch datafile 6;
sql 'alter tablespace tablespace_name online';
release channel c1;
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7199859/viewspace-580442/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle中表空間、表、索引的遷移Oracle索引
- 達夢資料庫系統表空間資料檔案遷移過程資料庫
- oracle 普通表空間資料檔案壞塊Oracle
- 聊聊Oracle表空間Offline的三種引數(下)Oracle
- Oracle 12cbigfile表空間物件遷移Oracle物件
- PostgreSQL在不同的表空間移動資料檔案SQL
- Oracle臨時表空間檢視、新增臨時表空間資料檔案、修改預設臨時表空間 方法!Oracle
- Oracle案例11——Oracle表空間資料庫檔案收縮Oracle資料庫
- Oracle 表空間增加檔案Oracle
- Oracle 刪除使用者、表空間、資料檔案、使用者下的所有表Oracle
- 用 Laravel 遷移檔案新增表註釋的一種方法Laravel
- 表空間和資料檔案的管理
- oracle 表移動表空間Oracle
- Oracle表移動表空間Oracle
- oracle dg庫資料檔案空間不足Oracle
- 用傳輸表空間跨平臺遷移資料
- Oracle資料庫遷移 - 異構傳輸表空間TTS HP-UX遷移至Redhat Linux 7.7Oracle資料庫TTSRedhatLinux
- 聊聊Oracle表空間Offline的三種引數(上)Oracle
- 聊聊Oracle表空間Offline的三種引數(中)Oracle
- table/index/LOBINDEX遷移表空間Index
- 新建的表空間(或資料檔案)丟失以及控制檔案丟失,有新建表空間(或資料檔案)前的控制文
- MySQL 遷移表空間,備份單表MySql
- 達夢(DM)資料庫的表空間建立和遷移維護資料庫
- 表空間(資料檔案shrink)收縮示例
- Oracle 10g大檔案表空間(轉)Oracle 10g
- Oracle資料庫(資料泵)遷移方案(下)Oracle資料庫
- 表空間與資料檔案的offline和online操作
- Oracle資料庫(DataGuard)遷移方案(下)Oracle資料庫
- 【資料遷移】XTTS跨平臺傳輸表空間v4TTS
- MySQL InnoDB系統表空間資料檔案配置MySql
- mysql Innodb表空間解除安裝、遷移、裝載的使用方法MySql
- [待整理]oracle10g刪除(釋放)資料檔案/表空間流程Oracle
- oracle建立臨時表空間和資料表空間以及刪除Oracle
- 作業系統——檔案的三種外存形式及檔案儲存空間的管理方法作業系統
- ORACLE RAC ASM資料檔案遷移OMF檔案報錯ORA-01276解決OracleASM
- 資料表結構更新後,遷移檔案怎麼使用?
- 2.5.9 在資料庫建立期間支援大檔案表空間資料庫
- 【XTTS】使用XTTS傳輸表空間將Oracle11.2.0.4資料遷移至Oracle19CTTSOracle
- 2.5.4 為 SYSAUX 表空間指定資料檔案屬性UX