Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Help! 9.0.2 dead!

Re: Help! 9.0.2 dead!

From: none <tpcolson_at_gmail.com>
Date: 25 Aug 2005 10:26:15 -0700
Message-ID: <1124990775.059030.224980@g44g2000cwa.googlegroups.com>


Here is the fix:

DB must be MOUNTED, not OPEN.

SQL> alter database drop logfile group 2; SQL> alter database add logfile group 2
('C:\ORACLE\ORADATA\HYDRO\REDO02.LOG') size 100M;
SQL> alter database drop logfile group 3; SQL> alter database add logfile group 3
('C:\ORACLE\ORADATA\HYDRO\REDO03.LOG') size 100M;
SQL> select * from v$log; -- check the status of new ones will be UNUSED

SQL> alter database open;
SQL> alter system switch logfile;
SQL> select * from v$log;  -- check that the CURRENT group is changed
Received on Thu Aug 25 2005 - 12:26:15 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US