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

Home -> Community -> Usenet -> c.d.o.misc -> Re: Help! 9i hosed!

Re: Help! 9i hosed!

From: none <tpcolson_at_gmail.com>
Date: 25 Aug 2005 10:25:34 -0700
Message-ID: <1124990734.158386.99430@g43g2000cwa.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:25:34 CDT

Original text of this message

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