[Dataguard]主庫歸檔丟失,備庫不需重建實驗
1)模擬環境,修改主庫引數,延遲歸檔傳輸到備庫
SQL> alter system set log_archive_dest_state_2=defer;
System altered.
2)在主庫進行一些DML操作
SQL> create table neal as select * from dba_objects;
Table created.
SQL> delete from neal where rownum<1000;
999 rows deleted.
SQL> commit;
Commit complete.
3)切換日誌,產生歸檔
SQL> alter system switch logfile;
System altered.
SQL> alter system switch logfile;
System altered.
4)查詢歸檔日誌應用情況
SQL> select SEQUENCE#,APPLIED from v$archived_log order by SEQUENCE# asc;
SEQUENCE# APPLIED
---------- ---------
839 NO
839 YES
840 NO
840 YES
841 NO
841 YES
842 NO
843 NO
5)將未傳到備庫的歸檔檔案mv或者rm掉
[oracle@primary orcl]$ mv 1_842_899802738.arc 1_842_899802738.arc.bak
[oracle@primary orcl]$ mv 1_843_899802738.arc 1_843_899802738.arc.bak
[oracle@primary orcl]$ ll -lrth
-rw-r----- 1 oracle oinstall 6.5K Mar 24 14:10 1_842_899802738.arc.bak
-rw-r----- 1 oracle oinstall 11M Mar 24 14:18 1_843_899802738.arc.bak
6)查詢目前備庫的scn
SQL> select current_scn from v$database;
CURRENT_SCN
-----------
2356278
7)停止備庫的應用功能
SQL> alter database recover standby database cancel;
8)將主庫延遲歸檔傳輸功能恢復
SQL> alter system set log_archive_dest_state_2=enable;
System altered.
9)主庫進行基於scn的增量備份
[oracle@primary orcl]$ rman target /
Recovery Manager: Release 11.2.0.4.0 - Production on Thu Mar 24 14:24:52 2016
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
connected to target database: ORCL (DBID=1427583471)
RMAN> backup incremental from scn 2356278 database format='/u01/backup/incstandby_%u' tag=incstandby;
Starting backup at 24-MAR-16
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=46 device type=DISK
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
input datafile file number=00001 name=/u01/oracle/oradata/orcl/system01.dbf
input datafile file number=00002 name=/u01/oracle/oradata/orcl/sysaux01.dbf
input datafile file number=00003 name=/u01/oracle/oradata/orcl/undotbs01.dbf
input datafile file number=00005 name=/u01/oracle/oradata/orcl/qxt01.dbf
input datafile file number=00006 name=/u01/sun01.dbf
input datafile file number=00004 name=/u01/oracle/oradata/orcl/users01.dbf
channel ORA_DISK_1: starting piece 1 at 24-MAR-16
channel ORA_DISK_1: finished piece 1 at 24-MAR-16
piece handle=/u01/backup/incstandby_05r19oki tag=INCSTANDBY comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:35
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
including current control file in backup set
channel ORA_DISK_1: starting piece 1 at 24-MAR-16
channel ORA_DISK_1: finished piece 1 at 24-MAR-16
piece handle=/u01/backup/incstandby_06r19olm tag=INCSTANDBY comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:02
Finished backup at 24-MAR-16
10)傳送增量檔案到備庫
[oracle@primary backup]$ scp incstandby_0* oracle@192.168.8.71:/u01/backup/
oracle@192.168.8.71's password:
incstandby_05r19oki 100% 10MB 10.2MB/s 00:01
incstandby_06r19olm 100% 13MB 12.5MB/s 00:00
11)備庫查詢傳輸過來的檔案
[oracle@standby backup]$ ll -lrt
total 1134124
-rw-r----- 1 oracle oinstall 1127710720 Dec 30 09:02 backup_899803644_1_1.bak
-rw-r----- 1 oracle oinstall 9830400 Dec 30 09:03 backup_899803700_2_1.bak
-rw-r----- 1 oracle oinstall 10657792 Mar 24 14:28 incstandby_05r19oki
-rw-r----- 1 oracle oinstall 13139968 Mar 24 14:29 incstandby_06r19olm
12)查詢備庫schema資訊
RMAN> report schema;
using target database control file instead of recovery catalog
RMAN-06139: WARNING: control file is not current for REPORT SCHEMA
Report of database schema for database with db_unique_name DG
List of Permanent Datafiles
===========================
File Size(MB) Tablespace RB segs Datafile Name
---- -------- -------------------- ------- ------------------------
1 760 SYSTEM *** /u01/oracle/oradata/dg/system01.dbf
2 620 SYSAUX *** /u01/oracle/oradata/dg/sysaux01.dbf
3 70 UNDOTBS1 *** /u01/oracle/oradata/dg/undotbs01.dbf
4 5 USERS *** /u01/oracle/oradata/dg/users01.dbf
5 50 QXT *** /u01/oracle/oradata/dg/qxt01.dbf
6 10 SUN *** /u01/sun01.dbf
List of Temporary Files
=======================
File Size(MB) Tablespace Maxsize(MB) Tempfile Name
---- -------- -------------------- ----------- --------------------
1 20 TEMP 32767 /u01/oracle/oradata/dg/temp01.dbf
13)備庫啟動到nomount階段
RMAN> startup nomount;
Oracle instance started
Total System Global Area 784998400 bytes
Fixed Size 2257352 bytes
Variable Size 499125816 bytes
Database Buffers 281018368 bytes
Redo Buffers 2596864 bytes
14)從備份片裡恢復standby控制檔案
RMAN> restore standby controlfile from '/u01/backup/incstandby_06r19olm';
Starting restore at 24-MAR-16
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=19 device type=DISK
channel ORA_DISK_1: restoring control file
channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
output file name=/u01/oracle/oradata/dg/control01.ctl
output file name=/u01/oracle/fast_recovery_area/dg/control02.ctl
Finished restore at 24-MAR-16
15)備庫啟動到mount階段,並註冊備份集
RMAN> alter database mount;
database mounted
released channel: ORA_DISK_1
RMAN> catalog start with '/u01/backup/';
searching for all files that match the pattern /u01/backup/
List of Files Unknown to the Database
=====================================
File Name: /u01/backup/incstandby_06r19olm
File Name: /u01/backup/incstandby_05r19oki
Do you really want to catalog the above files (enter YES or NO)? yes
cataloging files...
cataloging done
List of Cataloged Files
=======================
File Name: /u01/backup/incstandby_06r19olm
File Name: /u01/backup/incstandby_05r19oki
16)檢視備份集註冊情況
RMAN> list backup;
List of Backup Sets
===================
BS Key Type LV Size Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
1 Full 1.05G DISK 00:00:52 30-DEC-15
BP Key: 1 Status: AVAILABLE Compressed: NO Tag: TAG20151230T092724
Piece Name: /u01/backup/backup_899803644_1_1.bak
List of Datafiles in backup set 1
File LV Type Ckp SCN Ckp Time Name
---- -- ---- ---------- --------- ----
1 Full 964412 30-DEC-15 /u01/oracle/oradata/dg/system01.dbf
2 Full 964412 30-DEC-15 /u01/oracle/oradata/dg/sysaux01.dbf
3 Full 964412 30-DEC-15 /u01/oracle/oradata/dg/undotbs01.dbf
4 Full 964412 30-DEC-15 /u01/oracle/oradata/dg/users01.dbf
BS Key Type LV Size Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
2 Full 9.36M DISK 00:00:07 30-DEC-15
BP Key: 2 Status: AVAILABLE Compressed: NO Tag: TAG20151230T092724
Piece Name: /u01/backup/backup_899803700_2_1.bak
SPFILE Included: Modification time: 30-DEC-15
SPFILE db_unique_name: ORCL
Control File Included: Ckp SCN: 964412 Ckp time: 30-DEC-15
BS Key Type LV Size Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
3 Incr 12.52M DISK 00:00:00 24-MAR-16
BP Key: 3 Status: AVAILABLE Compressed: NO Tag: INCSTANDBY
Piece Name: /u01/backup/incstandby_06r19olm
Control File Included: Ckp SCN: 2357421 Ckp time: 24-MAR-16
BS Key Type LV Size Device Type Elapsed Time Completion Time
------- ---- -- ---------- ----------- ------------ ---------------
4 Incr 10.16M DISK 00:00:00 24-MAR-16
BP Key: 4 Status: AVAILABLE Compressed: NO Tag: INCSTANDBY
Piece Name: /u01/backup/incstandby_05r19oki
List of Datafiles in backup set 4
File LV Type Ckp SCN Ckp Time Name
---- -- ---- ---------- --------- ----
1 Incr 2357390 24-MAR-16 /u01/oracle/oradata/dg/system01.dbf
2 Incr 2357390 24-MAR-16 /u01/oracle/oradata/dg/sysaux01.dbf
3 Incr 2357390 24-MAR-16 /u01/oracle/oradata/dg/undotbs01.dbf
4 Incr 2357390 24-MAR-16 /u01/oracle/oradata/dg/users01.dbf
5 Incr 2357390 24-MAR-16 /u01/oracle/oradata/dg/qxt01.dbf
6 Incr 2357390 24-MAR-16 /u01/sun01.dbf
17)使用如下語句恢復
RMAN> recover database noredo;
Starting recover at 24-MAR-16
using channel ORA_DISK_1
channel ORA_DISK_1: starting incremental datafile backup set restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
destination for restore of datafile 00001: /u01/oracle/oradata/dg/system01.dbf
destination for restore of datafile 00002: /u01/oracle/oradata/dg/sysaux01.dbf
destination for restore of datafile 00003: /u01/oracle/oradata/dg/undotbs01.dbf
destination for restore of datafile 00004: /u01/oracle/oradata/dg/users01.dbf
destination for restore of datafile 00005: /u01/oracle/oradata/dg/qxt01.dbf
destination for restore of datafile 00006: /u01/sun01.dbf
channel ORA_DISK_1: reading from backup piece /u01/backup/incstandby_05r19oki
channel ORA_DISK_1: piece handle=/u01/backup/incstandby_05r19oki tag=INCSTANDBY
channel ORA_DISK_1: restored backup piece 1
channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
Finished recover at 24-MAR-16
Author:NEAL
DATE:2016-03-31
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29812844/viewspace-2071630/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- dataguard 歸檔丟失,備庫基於SCN恢復
- DG 主庫丟失歸檔
- Oracle主庫歸檔丟失,備庫日誌有gap,在不重建備庫的情況下,恢復備庫Oracle
- dg 主庫丟失歸檔 解決方案
- dataguard之物理備庫丟失資料檔案
- Oracle 10g DG 主庫丟失歸檔Oracle 10g
- 【DATAGUARD】物理dg在主庫丟失歸檔檔案的情況下的恢復(七)
- dataguard 由於主庫引數未配置歸檔刪除策略導致庫歸檔丟失ORA-16016
- Oracle DataGuard歸檔日誌丟失處理方法Oracle
- 使用RMAN增量備份處理Dataguard因歸檔丟失造成的gap
- dataguard 主備庫出現gap
- 丟失已歸檔日誌檔案下恢復資料庫資料庫
- DataGuard主備庫切換步驟
- dg中備庫歸檔目錄滿了,導致不能接收主庫歸檔檔案
- oracle 之dataguard主庫系統崩潰之物理備庫切主庫Oracle
- oracle歸檔日誌丟失後的資料庫恢復Oracle資料庫
- 【故障處理】DG環境主庫丟失歸檔情況下資料檔案的恢復
- 備份恢復實驗(1)丟失部分控制檔案
- 資料庫啟動時丟失資料檔案模擬實驗資料庫
- DataGuard切換(主庫為Rac+備庫為Rac)
- 主庫RAC,備庫單節點ASM的dataguard搭建ASM
- 【DATAGUARD 學習】管理影響備庫的主庫事件事件
- dg丟失歸檔,使用rman增量備份恢復
- 利用增量備份恢復gap歸檔丟失DG
- DATA GUARD主庫丟失資料檔案的恢復(2)
- DATA GUARD主庫丟失資料檔案的恢復(3)
- DATA GUARD主庫丟失資料檔案的恢復(1)
- 一個備份集同時恢出dataguard的主庫&備庫
- RMAN資料庫恢復 之歸檔模式有(無)備份-丟失資料檔案的恢復資料庫模式
- 【DataGuard】使用GC建立的物理DataGuard主備庫pfile比較GC
- Oracle10G Dataguard 多個備庫 - 主庫和物理備庫的切換Oracle
- TSM備份時因歸檔日誌丟失而導致備份失敗
- rman備份但丟失一個資料檔案,但有歸檔備份
- dataguard主備switchover互切實驗及理解
- 非歸檔無備份下控制檔案丟失的恢復
- 歸檔模式無備份丟失資料檔案後恢復模式
- 歸檔模式有備份丟失資料檔案後恢復模式
- 【備份恢復】恢復 丟失已歸檔重做日誌檔案