码迷,mamicode.com
首页 > 其他好文 > 详细

redo 无法归档故障处理

时间:2019-07-11 15:44:47      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:base   ora   size   acl   ase   rac   redo log   ror   ade   

Errors in file c:\app\administrator\diag\rdbms\orcl\orcl\trace\orcl_arc0_13756.trc:
ORA-00354: corrupt redo log block header
ORA-00353: log corruption near block 16320 change 17258861688 time 07/10/2019 00:11:07
ORA-00312: online log 7 thread 1: ‘E:\ORACLE\ORADATA\ORCL\REDO07.LOG‘

参考mos id :332672.1
1、添加redo组及成员

alter database add logfile  group 8 ‘E:\ORACLE\ORADATA\ORCL\REDO08.log‘ size 200M;
alter database add logfile member ‘E:\ORACLE\ORADATA\ORCL\REDO081.log‘  to group 8;

2、查看无法归档redo状态

select GROUP#  ,BYTES/1024/1024 size_M,STATUS,ARCHIVED from v$log;
         GROUP#    SIZE_M STATUS          ARC                                                                          
          4        200 INACTIVE      YES                                      
          5        200 INACTIVE      YES                                      
          6        200 CURRENT       YES 
          7        200 INACTIVE      NO
          8        200 UNUSED        NO

3、清理redo

alter database clear unarchived logfile group 7;   

4、redo 删除

alter database drop logfile group 7;

redo 无法归档故障处理

标签:base   ora   size   acl   ase   rac   redo log   ror   ade   

原文地址:https://blog.51cto.com/11298469/2419201

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!