Home > Database > Mysql Tutorial > body text

ORA-03113解决方法

WBOY
Release: 2016-06-07 16:45:04
Original
1570 people have browsed it

碰到ORA-00257归档日志写满的解决方法这篇日志当中描述的归档日志写满的情况。此时我想将数据库切换到非归档模式,参考如何启动或

场景:

碰到ORA-00257归档日志写满的解决方法这篇日志当中描述的归档日志写满的情况(见 )。

此时我想将数据库切换到非归档模式,参考如何启动或关闭Oracle的归档(ARCHIVELOG)模式进行操作(见 ),,但是在执行shutdown immediate;的时候卡死。

此时我重启了Windows Oracle 数据库服务器。

再次连接数据库出现解决连接Oracle 11g报ORA-01034和ORA-27101的错误当中的问题。(见)

解决方法:

sysdba身份连接oracle

C:\Documents and Settings\Administrator>sqlplus /nolog
SQL> conn / as sysdba
Connected to an idle instance.
SQL> startup
ORACLE instance started.

接入到mount状态:

startup mount;

将数据库切换到非归档模式:如何启动或关闭Oracle的归档(ARCHIVELOG)模式

alter database noarchivelog;
alter database open;

在CentOS 6.4下安装Oracle 11gR2(x64)

Oracle 11gR2 在VMWare虚拟机中安装步骤

Debian 下 安装 Oracle 11g XE R2

本文永久更新链接地址:

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!