如何複製控制檔案在ASM例項儲存
本文介紹如何在ASM例項的環境下,去複製2個控制檔案的過程。
如果在檔案系統,相對比較簡單了。
##Make sure db is in the archived mode
SQL> archive log list
Database log mode Archive Mode
Automatic archival Enabled
Archive destination +ARCH_01/t/
Oldest online log sequence 24
Next log sequence to archive 25
Current log sequence 25
##Make sure all of online redo is done backup
alter system switch logfile;
...
## If you are using spfile parameter file ,please convert it to pfile first
create pfile='/u01/app/oracle/initt.ora' from spfile='+ARCH_01/t/spfilet.ora';
## Backup controlfile in mount stage
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup mount
ORACLE instance started.
Total System Global Area 1191182336 bytes
Fixed Size 2072288 bytes
Variable Size 318767392 bytes
Database Buffers 855638016 bytes
Redo Buffers 14704640 bytes
Database mounted.
alter database backup controlfile to '/u01/app/oracle/test_ctl.ctl';
##Edit the parameter: controlfile in the pfile
SQL> show parameter control
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
control_file_record_keep_time integer 7
control_files string +DATA_01/t/controlfile/current
.285.640542545, +DATA_01/t/con
trolfile/current.286.640542545
## Duplicate controlfile from file system to ASM instance
SQL> startup nomount pfile=/u01/app/oracle/initt1.ora
ORACLE instance started.
Total System Global Area 1191182336 bytes
Fixed Size 2072288 bytes
Variable Size 318767392 bytes
Database Buffers 855638016 bytes
Redo Buffers 14704640 bytes
$ ./rman target /
Recovery Manager: Release 10.2.0.3.0 - Production on Fri Dec 7 11:54:15 2007
Copyright (c) 1982, 2005, Oracle. All rights reserved.
connected to target database: t (not mounted)
RMAN> restore controlfile from '/u01/app/oracle/test_ctl.ctl';
Starting restore at 12/07/2007 11:54:33
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=153 devtype=DISK
channel ORA_DISK_1: copied control file copy
output filename=+DATA_01/t/controlfile/test_ctl01
output filename=+DATA_01/t/controlfile/test_ctl02
Finished restore at 12/07/2007 11:54:41
SQL> startup nomount pfile=/u01/app/oracle/initt1.ora
alter database open resetlogs;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22664653/viewspace-662823/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ASM儲存使用RMAN複製控制檔案ASM
- asm下的控制檔案的複製ASM
- Oracle單例項+ASM新增控制檔案Oracle單例ASM
- asm例項有沒有控制檔案嗎?ASM
- 使用RMAN將RAC+ASM複製到單例項+ASM上ASM單例
- 【例項】增加控制檔案
- 使用普通檔案建立ASM例項ASM
- 在不同機器之間使用rman複製資料庫例項,從非asm到asm資料庫ASM
- 使用RMAN在ASM和檔案系統之間複製資料ASM
- 【原創】使用普通檔案建立ASM例項ASM
- 從ASM磁碟中複製檔案到本地檔案系統ASM
- oracle控制檔案複製、移動方式Oracle
- 2 Day DBA-管理Oracle例項-管理資料庫儲存結構-關於控制檔案Oracle資料庫
- 透過xtts遷移單例項檔案系統表空間到RAC ASM儲存表空間TTS單例ASM
- 通過xtts遷移單例項檔案系統表空間到RAC ASM儲存表空間TTS單例ASM
- 10G下從ASM複製檔案到檔案系統ASM
- 把檔案系統的資料檔案遷移到ASM儲存ASM
- 製作ASM裝置下的多個控制檔案ASM
- 塊儲存 檔案儲存 物件儲存物件
- SQL Server 2005的複製儲存過程選項BYSQLServer儲存過程
- Oracle Restart啟動資料庫例項故障一例( Oracle ASM儲存Spfile解析)OracleREST資料庫ASM
- 檔案儲存
- 資料儲存--檔案儲存
- 2 Day DBA-管理Oracle例項-管理資料庫儲存結構-練習:檢視控制檔案資訊Oracle資料庫
- 控制檔案丟失恢復例項(3) - 使用重建控制檔案方式(noresetlogs)
- 如何將MAC的檔案儲存至NAS網路儲存?Mac
- oracle之 RAC 11G ASM下控制檔案多路複用OracleASM
- 12c複製 RAC ASM中的密碼檔案到檔案系統ASM密碼
- 如何同時複製、分類檔案
- 基本複製應用例項(轉)
- AWS CLI 實現 S3與EC2例項間檔案複製S3
- python如何分散式儲存檔案?Python分散式
- ASM下遷移控制檔案ASM
- ASM中多功控制檔案ASM
- 【ASM學習】在windows 環境下建立ASM例項ASMWindows
- xtts from檔案系統到ASM儲存(dbms_file_transfer)TTSASM
- nc複製檔案
- 複製檔案githubGithub