[Oracle][OnlineREDO]数据库无法启动时的对应策略:

[Oracle][OnlineREDO]数据库无法启动时的对应策略:

返回:Oracle 索引页


1. Start with mount.

  SQL> conn / as sysdba
  SQL> startup mount

 2. Check the redo log in which v $ log failed.

  SQL> select * from v $ log;

   ===> If STATUS = 'INACTIVE', perform step 3.
        If STATUS = 'INACTIVE', do step 4.

 3. Clear the redo log file.

  SQL> alter database clear logfile group X;
  SQL> alter database open;

 4. Execute the recover statement.

  SQL> recover database until cancel;
  SQL> alter database open resetlogs;
   
If you can not deal with the above method, the following actions are required.

 a) In the archive log mode

  Apply the created archive log and recover.

 b) In case of no archive log mode

  Please restore the acquired cold backup.

 

返回:Oracle 索引页

posted @   健哥的数据花园  阅读(264)  评论(0编辑  收藏  举报
编辑推荐:
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
阅读排行:
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报
· 一文读懂知识蒸馏
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
历史上的今天:
2013-10-04 对PostgreSQL数据库的hstore类型建立GisT索引的实验
2013-10-04 PostgreSQL的hstore初步学习
2013-10-04 PostgreSQL如何导入SJIS字符集的文件
2012-10-04 GNU make manual 翻译( 一百六十八)
2012-10-04 对 makefile 中 flavor 函数的学习体会
2012-10-04 GNU make manual 翻译( 一百六十七)
2012-10-04 对 makefile 中 eval 函数的学习体会
点击右上角即可分享
微信分享提示