Oracle 資料檔案移動步驟
ORACLE資料檔案移動步驟
一、現建立好目標路徑
二、關閉資料庫和監聽(該庫裡面只有一個使用者表空間為sms所以使用tablespace offline和關閉資料庫的方法所受影響的時間是一樣的)
三、cp原始檔到目標路徑
四、startup mount pfile=$ORACLE_HOME/dbs/initsid.ora 然後使用下面語句更新控制檔案的資訊(如果控制的檔案也要移動的話那麼更改spfile檔案在mount之前)
SQL> select 'alter database rename file '''||file_name||''' to '''||file_name||''' ;' from dba_data_files;
alter database rename file '/data/oradata/caitong/users01.dbf' to '/data1/oradata/caitong/users01.dbf';
alter database rename file '/data/oradata/caitong/sysaux01.dbf' to '/data1/oradata/caitong/sysaux01.dbf';
alter database rename file '/data/oradata/caitong/undotbs01.dbf' to '/data1/oradata/caitong/undotbs01.dbf';
alter database rename file '/data/oradata/caitong/system01.dbf' to '/data1/oradata/caitong/system01.dbf';
alter database rename file '/data/oradata/caitong/sms.dbf' to '/data1/oradata/caitong/sms.dbf';
alter database rename file '/data/oradata/caitong/sms2.dbf' to '/data1/oradata/caitong/sms2.dbf';
alter database rename file '/data/oradata/caitong/sms3.dbf' to '/data1/oradata/caitong/sms3.dbf';
alter database rename file '/data/oradata/caitong/sms4.dbf' to '/data1/oradata/caitong/sms4.dbf';
五、create spfile from pfile
六、shutdown immediate
七、startup
八、select group#,status from v$log
九、alter database drop logfile group 1;
十、alter database add logfiel group 1('$PATH/redo01.log') size 100m
十、select * from database_properties; --檢視臨時表空間
十一、create temporary tablespace new_temp tempfile '$PATH/temp02.dbf' size 2g autoextend off;
十二、alter database default temporary tablespace new_temp;
十三、drop tablespace old_temp including contents and datafiles;
備註:更改使用者預設表空間
alter user username temporary tablespace new_temp
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/13879334/viewspace-1034748/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ORACLE移動資料檔案Oracle
- Oracle資料庫啟動步驟Oracle資料庫
- 移動Oracle資料檔案的方法Oracle
- 在Oracle中移動資料檔案Oracle
- 在ORACLE移動資料庫檔案Oracle資料庫
- oracle資料庫移動資料檔案、日誌檔案和控制檔案Oracle資料庫
- oracle中移動控制檔案、資料檔案、日誌檔案Oracle
- 在ORACLE中移動資料庫檔案Oracle資料庫
- Oracle檢視trace檔案步驟Oracle
- oracle 修改資料檔案位置(路徑)(移動)Oracle
- Oracle資料庫新增和移動控制檔案Oracle資料庫
- Oracle 移動資料檔案的操作方法Oracle
- 在ORACLE中移動資料庫檔案(轉)Oracle資料庫
- oracle 資料檔案遷移Oracle
- oracle資料檔案遷移Oracle
- 在Oracle中移動資料檔案、控制檔案和日誌檔案Oracle
- SQLServer移動資料檔案SQLServer
- 線上移動資料檔案
- Oracle資料庫檔案遷移步驟Oracle資料庫
- Oracle資料庫例項啟動步驟分析Oracle資料庫
- 在ORACLE中移動資料庫檔案在(轉)Oracle資料庫
- 移動端步驟1
- Oracle_遷移資料檔案Oracle
- 磁碟空間不足,線上移動Oracle的資料檔案Oracle
- ORACLE啟動步驟Oracle
- 3285.如何通過連結移動外部檔案到空間(步驟)
- 手動建立資料庫步驟資料庫
- 移動資料檔案從ASM到檔案系統ASM
- Oracle 表空間資料檔案遷移Oracle
- Centos MySQL資料庫遷移詳細步驟CentOSMySql資料庫
- 使用rman在oracle ASM磁碟組之間移動資料檔案OracleASM
- 資料檔案,表空間的移動
- 在ASM Diskgroup間移動資料檔案ASM
- 移動資料檔案,平衡磁碟負載負載
- 文字檔案輸入步驟
- 通過移動資料檔案來均衡檔案I/O
- 透過移動資料檔案來均衡檔案I/O
- 使用DG庫資料檔案建開發測試庫步驟