Oracle 11g数据库维护中错误总结
Oracle 11g数据库维护中错误总结 开启归档日志失败SQLgt; alter database archivelog; alter database archivelog * ERROR at l
首页 → 数据库技术
背景:
阅读新闻
Oracle 11g数据库维护中错误总结
[日期:2014-02-24] 来源:Linux社区 作者:tongcheng [字体:]
Oracle 11g数据库维护中错误总结
开启归档日志失败
SQL> alter database archivelog;
alter database archivelog
*
ERROR at line 1:
ORA-00265: instance recovery required, cannot set ARCHIVELOG mode --上欠数据库意外中止才会出现这种情况,千万不要用shutdown abort终止数据库
解决方法:
SQL> shutdown immediate --停止数据库
ORA-01109: database not open
Database dismounted.
ORACLE instance shut down.
SQL> startup --打开数据库
ORACLE instance started.
Total System Global Area 661209088 bytes
Fixed Size 1338560 bytes
Variable Size 486540096 bytes
Database Buffers 167772160 bytes
Redo Buffers 5558272 bytes
Database mounted.
Database opened.
SQL> shutdown immediate --正常停止数据库
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup mount --数据库启动到挂载状态
ORACLE instance started.
Total System Global Area 661209088 bytes
Fixed Size 1338560 bytes
Variable Size 486540096 bytes
Database Buffers 167772160 bytes
Redo Buffers 5558272 bytes
Database mounted.
SQL> alter database archivelog; --修改成功
Database altered.
SQL>
测试:
SQL> select log_mode from v$database; --查看数据库是否为归档模式
LOG_MODE
------------
ARCHIVELOG
SQL>
推荐阅读
-
Oracle 11g数据库维护中错误总结
-
在虚拟机上安装 Oracle 11g RAC 过程中遇 SCAN Name 配置错误的处理办法
-
Oracle数据库如何搜集指定SQL的执行计划和解决过程中的ORA-00904错误
-
Oracle 11g数据库启动错误总结
-
Oracle数据库中六种TNS:协议适配器错误问题的解决方法
-
在oracle 数据库中查看一个sql语句的执行时间和SP2-0027错误
-
在oracle 数据库中查看一个sql语句的执行时间和SP2-0027错误
-
ORACLE数据库日常维护知识点总结
-
oracle 11g配置 解决启动连接数据库出现的ora错误
-
Oracle数据库中ora-12899错误的解决方法