Server powered down, Oracle database failed to start solution

Source: Internet
Author: User

If the database is not backed up, the Oracle database startup error occurs after the server starts due to an accidental power outage.

1. The database does not open the archive mode

2. No backup

Solution:

1234567891011121314151617181920212223 SQL>startup mountSQL>recover database using backup controlfile until cancel;SQL>alter database open resetlogs;# 此时会提示system表空间需要恢复,但是由于当前日志损坏# 无法进行恢复,所以需要加入#隐含参数,oracle才不会监测scn# 的一致性,才能打开数据库。# 重启数据库加入隐含参数SQL> startup mountSQL> alter system set “_allow_resetlogs_corruption”=true scope=spfile;SQL> shutdown immediateSQL> startup mountSQL> alter database open resetlogs;alter database open resetlogs*ERROR at line 1:ORA-01092: ORACLE instance terminated. Disconnection forced# 不管这些,再次登录sqlplus起动数据库SQL*Plus: Release 10.2.0.1.0 - Production on Fri Nov 16 08:03:43 2007Copyright (c) 1982, 2005, Oracle.  All rights reserved.Connected to:Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - ProductionWith the Partitioning, OLAP and Data Mining optionsSQL>startup

Server powered down, Oracle database failed to start solution

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.