###########1

1.查看备库的scn

⚠️如果控制文件,数据文件,数据文件头部的scn不一致,需要根据日志中的gap的起始sequence# 找到对应的scn

col  current_scn for a999999999;

select current_scn from v$database;

2.查看主库在断点后是否添加数据文件

select file#,name, from  v$datafile where current_change#>=备库查得的断电处scn;

3.备库停止日志应用服务

alter database recover managed standby  database cancel;

4.主库增量备份并传输到备库上

RMAN> backup as compressed backupset incremental from scn 断点处的scn database format ‘备份存放路径’

scp

5.备库上进行恢复

RMAN>catalog START with ‘拷贝过来的主库的增量备份集的路径’

⚠️ 如果此时库是read only,需要转换为mount状态。

RMAN>recover database noredo

6.主库上创建standby controlfile 文件并scp到备库

RMAN>backup current controlfile for standby format '备份路径‘;

7.恢复备库的控制文件

备库重启到nomount状态,恢复控制文件,启动到mount

RMAN>restore standby controlfile from '主库的控制文件的rman备份文件'

RMAN>alter database open mount

8.清空备库日志组(选做)

⚠️如果dg中使用了standby log 模式,不需要此步骤,否则有几组需要清空几组。

alter database clear logfile group 组号;

9.备库重设flashback(选做)

alter database flashback on/off;

10.备库重新接收并应用日志

alter database recover managed standby database using current logfile disconnect from session;

11.开启备库到redo only状态

alter database recover managed standby database cancel;

alter database open;

alter database recover managed standby database using current logfile disconnect from session;

12.验证修复是否成功

在主库端执行:alter system switch logfile;

在各个备库中执行:select max(sequence#) from v$arhcived_log;

######2

1.Rolling a Standby Forward using an RMAN Incremental Backup To Fix The Nologging Changes

STEPS

1. Follow this step-by-step procedure to roll forward a physical standby database for which nologging changes have been  applied to a small subset of the database:

1. List the files that have had nologging changes applied by querying the V$DATAFILE view on the standby database. For example:

SQL> SELECT FILE#, FIRST_NONLOGGED_SCN FROM V$DATAFILE WHERE FIRST_NONLOGGED_SCN > 0;

FILE#      FIRST_NONLOGGED_SCN
---------- -------------------
         4              225979
         5              230184

2. Stop Redo Apply on the standby database:

SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;

3. On the standby database, offline the datafiles (recorded in step 0) that have had nologging changes. Taking these datafiles offline ensures redo data is not skipped for the corrupt blocks while the incremental backups are performed.

SQL> ALTER DATABASE DATAFILE 4 OFFLINE FOR DROP;
SQL> ALTER DATABASE DATAFILE 5 OFFLINE FOR DROP;

4. Start Redo Apply on the standby database:

SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE USING CURRENT LOGFILE DISCONNECT;

5. While connected to the primary database as the RMAN target, create an incremental backup for each datafile listed in the FIRST_NONLOGGED_SCN column (recorded in step 0). For example:

RMAN> BACKUP INCREMENTAL FROM SCN 225979 DATAFILE 4 FORMAT '/tmp/ForStandby_%U' TAG 'FOR STANDBY';
RMAN> BACKUP INCREMENTAL FROM SCN 230184 DATAFILE 5 FORMAT '/tmp/ForStandby_%U' TAG 'FOR STANDBY';

6. Transfer all backup sets created on the primary system to the standby system. (Note that there may be more than one backup file created.)

% scp /tmp/ForStandby_* standby:/tmp

7. While connected to the physical standby database as the RMAN target, catalog all incremental backup pieces. For example:

RMAN> CATALOG START WITH '/tmp/ForStandby_';

8. Stop Redo Apply on the standby database:

SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;

9. Online the datafiles on the standby database

SQL> ALTER DATABASE DATAFILE 4 ONLINE;
SQL> ALTER DATABASE DATAFILE 5 ONLINE;

10. While connected to the physical standby database as the RMAN target, apply the incremental backup sets:

RMAN> RECOVER DATAFILE 4, 5 NOREDO;

11. Query the V$DATAFILE view on the standby database to verify there are no datafiles with nologged changes. The following query should return zero rows

SQL> SELECT FILE#, FIRST_NONLOGGED_SCN FROM V$DATAFILE WHERE FIRST_NONLOGGED_SCN > 0;

12. Recreate the Standby Controlfile following:

Note 459411.1 Steps to recreate a Physical Standby Controlfile

13. Remove the incremental backups from the standby system:

RMAN> DELETE BACKUP TAG 'FOR STANDBY';

14. Manually remove the incremental backups from the primary system. For example, the following example uses the Linux rm command:

% rm /tmp/ForStandby_*

15. Start Redo Apply on the standby database:

SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE USING CURRENT LOGFILE DISCONNECT;

Note: Starting from 12c we can use RECOVER DATABASE...FROM SERVICE clause in RMAN to generate, transfer and apply the incremental backup in a single step. Please refer below document for examples:

Note 1987763.1 ROLLING FORWARD A PHYSICAL STANDBY USING RECOVER FROM SERVICE COMMAND IN 12C 

2. Follow this step-by-step procedure to roll forward a physical standby database for which nologging changes have been applied to a large portion of the database:

1. Query the V$DATAFILE view on the standby database to record the lowest FIRST_NONLOGGED_SCN:

SQL> SELECT MIN(FIRST_NONLOGGED_SCN) FROM V$DATAFILE WHERE FIRST_NONLOGGED_SCN>0;

MIN(FIRST_NONLOGGED_SCN)
------------------------
                  223948

2.Stop Redo Apply on the standby database:

SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;

3.While connected to the primary database as the RMAN target, create an incremental backup from the lowest FIRST_NONLOGGED_SCN (recorded in step 0)

RMAN> BACKUP INCREMENTAL FROM SCN 223948 DATABASE FORMAT '/tmp/ForStandby_%U' tag 'FOR STANDBY';

4.Transfer all backup sets created on the primary system to the standby system. (Note that more than one backup file may have been created.) The following example uses the scp command to copy the files:

% scp /tmp/ForStandby_* standby:/tmp

5.While connected to the standby database as the RMAN target, catalog all incremental backup piece(s)

RMAN> CATALOG START WITH '/tmp/ForStandby_';

6.While connected to the standby database as the RMAN target, apply the incremental backups:

RMAN> RECOVER DATABASE NOREDO;

7.Query the V$DATAFILE view to verify there are no datafiles with nologged changes. The following query on the standby database should return zero rows:

SQL> SELECT FILE#, FIRST_NONLOGGED_SCN FROM V$DATAFILE WHERE FIRST_NONLOGGED_SCN > 0;

8. Recreate the Standby Controlfile following:

Note 459411.1 Steps to recreate a Physical Standby Controlfile

9.Remove the incremental backups from the standby system:

RMAN> DELETE BACKUP TAG 'FOR STANDBY';

10.Manually remove the incremental backups from the primary system. For example, the following removes the backups using the Linux rm command:

% rm /tmp/ForStandby_*

11.Start Redo Apply on the standby database:

SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE USING CURRENT LOGFILE DISCONNECT;

Note:

If the affected files belong to a READ ONLY tablespace, those files will be ignored during backup. To bypass the issue, at Primary Database, switch the tablespace from read only to read write and back to read only again :

SQL> alter tablespace <tablespace_name> read write ;
SQL> alter tablespace <tablespace_name> read only ;

最新文章

  1. 整理iOS9适配中出现的坑(图文)
  2. Angular JS中双击事件ng-dblclick避免同时触发两次单击事件ng-click的解决方案
  3. easyui datagrid 学习
  4. MySQL_PHP学习笔记_2015_0614_PHP传参总结_URL传参_表单传参
  5. linq 之左连接
  6. 关于word-break,word-wrap换行
  7. 手把手教学:详解HTML5移动开发框架PhoneJS
  8. maven第5章坐标和依赖
  9. js_day2
  10. javascript线程解释(setTimeout,setInterval你不知道的事)
  11. opencv2对于读书笔记——背投影图像的直方图来检测待处理的内容
  12. 关于C#继承运用的总结
  13. Storm同步调用之DRPC模型探讨
  14. java四则运算 界面化
  15. Python 在 Windows 下安装第三方包,报 Python 未注册的问题解决
  16. 基于socketserver模块并发套接字
  17. Linux3.10.0块IO子系统流程(0)-- 块IO子系统概述
  18. Shell基础知识(六)
  19. Angular组件生命周期钩子
  20. Python爬虫【三】利用requests和正则抓取猫眼电影网上排名前100的电影

热门文章

  1. Error Domain=NSURLErrorDomain Code=-1202,Https服务器证书无效
  2. Hough变换原理
  3. bzoj 1257 余数之和 —— 数论分块
  4. Python模块-requests(二)
  5. &quot;LPWSTR&quot; 类型的实参与&quot;const.char *&quot;类型形参不兼容
  6. 没办法,SVD就讲的这么好
  7. %.*s, printf
  8. android activity生命周期的一张经典图片
  9. vue 上传二进制图片
  10. 10、RNA-seq for DE analysis training(Mapping to assign reads to genes)