|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Re: Error: ORA-01033 ORACLE initialization or shutdown in progress <=== what [message #311688 is a reply to message #311663] |
Sat, 05 April 2008 13:17   |
assoora
Messages: 3 Registered: April 2007 Location: Jordan
|
Junior Member |
|
|
Hi,
Your problem is in the following file: (('D:\ORACLE\PRODUCT\10.1.0\ORADATA\ORCL\REDO01.LOG')) according to what you have got…
--------------------------------------------------
….
ORA-00314: log 1 of thread 1, expected sequence# 179 doesn't match 176
ORA-00312: online log 1 thread 1:
'D:\ORACLE\PRODUCT\10.1.0\ORADATA\ORCL\REDO01.LOG'
---------------------------------------------------
I can't exactly remember what I did. I do remember that, what happened to me was; during a clean-up effort (computer scan) a similar file to what you have got was accidentally deleted. I had no backups too.I was willing to lose the data in this datafile. There was something I couldn't do so that the startup does not try to open this file?
-------
Actually I had a different error, my error was:
ORA-01157: cannot identify/lock data file 6 - see DBWR trace file
ORA-01110: data file 6: 'E:\oracle\product\10.2.0\oradata\orcl\UNDOTBS01.DBF'
So I created the corrupted file again, as follows:
First, I saw what tablespace I have in my database:
select segment_name, tablespace_name, initial_extent,status
from dba_rollback_segs;
Second, I created the corrupted file:
create undo tablespace UNDO1 datafile 'E:\oracle\product\10.2.0\oradata\orcl/undo01.dbf' size 1
0M;
Third, I alter the systems tablespace, as follows:
ALTER SYSTEM SET UNDO_TABLESPACE = undotbs_02;
And then everything was ok
Best wishes
[Updated on: Sat, 05 April 2008 13:25] Report message to a moderator
|
|
|
|
|