Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Connected to an idle instance after computer crash

745509Sep 1 2012 — edited Sep 5 2012
I was inserting rows as following
begin
for i in 1..10000000
loop
insert into test values(i, dbms_random.string('U',50), dbms_random.string('U',50), dbms_random.string('U',50), dbms_random.string('U',50), dbms_random.string('U',50));
end loop;
end;
/
All of a sudden my computer crashed after an hour.
I did a reboot and I am not able to use my database anymore. What did happen and how to repair it?
I started database instance ORCL and it's listener and all I can see is:
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

C:\Windows\system32>set ORACLE_SID=ORCL

C:\Windows\system32>cd ..

C:\Windows>cd ..

C:\>cd app\INDREK\product\11.2.0\dbhome_1\BIN

C:\app\INDREK\product\11.2.0\dbhome_1\BIN>sqlplus / as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on L Sept 1 15:38:24 2012

Copyright (c) 1982, 2010, Oracle.  All rights reserved.

Connected to an idle instance.

SQL> alter database mount;
alter database mount
*
ERROR at line 1:
ORA-01034: ORACLE not available
Process ID: 0
Session ID: 0 Serial number: 0


SQL> alter database open resetlogs;
alter database open resetlogs
*
ERROR at line 1:
ORA-01034: ORACLE not available
Process ID: 0
Session ID: 0 Serial number: 0


SQL> startup
ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
ORACLE instance started.

Total System Global Area 3340451840 bytes
Fixed Size                  2180344 bytes
Variable Size            1979714312 bytes
Database Buffers         1342177280 bytes
Redo Buffers               16379904 bytes
Database mounted.
ORA-03113: end-of-file on communication channel
Process ID: 4940
Session ID: 191 Serial number: 3


SQL>
This post has been answered by Shivananda Rao on Sep 1 2012
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 3 2012
Added on Sep 1 2012
16 comments
1,576 views