Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1418616
  • 博文数量: 239
  • 博客积分: 5909
  • 博客等级: 大校
  • 技术积分: 2715
  • 用 户 组: 普通用户
  • 注册时间: 2010-07-24 20:19
文章分类

全部博文(239)

文章存档

2014年(4)

2013年(22)

2012年(140)

2011年(14)

2010年(59)

我的朋友

分类: Oracle

2012-12-28 16:56:19


The following INIT.ORA/SPFILE parameter can be used if your current redologs are corrupted or blown away. It may also be handy if you do database recovery and one of the archived log files are missing and cannot be restored.

NOTE: Caution is advised when enabling this parameter as you might end-up losing your entire database. Please contact Oracle Support before using it.

_allow_resetlogs_corruption = true

This should allow you to open the database. However, after using this parameter your database will be inconsistent (some committed transactions may be lost or partially applied).

Steps:

  • Do a "SHUTDOWN NORMAL" of the database
  • Set the above parameter
  • Do a "STARTUP MOUNT" and "ALTER DATABASE OPEN RESETLOGS;"
  • If the database asks for recovery, use an UNTIL CANCEL type recovery and apply all available archive and on-line redo logs, then issue CANCEL and reissue the "ALTER DATABASE OPEN RESETLOGS;" command.
  • Wait a couple of minutes for Oracle to sort itself out
  • Do a "SHUTDOWN NORMAL"
  • Remove the above parameter!
  • Do a database "STARTUP" and check your ALERT.LOG file for errors.
  • Extract the data and rebuild the entire database

转自:

阅读(1103) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~