当前位置:Gxlcms > mysql > Oracle11g数据库维护中错误总结

Oracle11g数据库维护中错误总结

时间:2021-07-01 10:21:17 帮助过:27人阅读

Oracle 11g数据库维护中错误总结 开启归档日志失败SQLgt; alter database archivelog; alter database archivelog * ERROR at l

Linux公社

首页 → 数据库技术

背景:

阅读新闻

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>

linux

  • 0
  • MySQL主从复制配置详述

    Oracle 11g数据库之数据导入导出与事物

    相关资讯 Oracle 11g

    图片资讯

    本文评论   查看全部评论 (0)

    评论声明

    最新资讯

    本周热门

    Linux公社简介 - 广告服务 - 网站地图 - 帮助信息 - 联系我们
    本站(LinuxIDC)所刊载文章不代表同意其说法或描述,仅为提供更多信息,,也不构成任何建议。


    Copyright © 2006-2014 Linux公社 All rights reserved 浙ICP备06018118号

    人气教程排行