Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Help! 9.0.2 dead!
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 changedReceived on Thu Aug 25 2005 - 12:26:15 CDT
![]() |
![]() |