SOLVED

ORA-01624: Log 1 Needed For Crash Recovery Of Instance

Asked by OracleDba12 viewsoracle
1
2
3
ORA-01624: Log 1 Needed For Crash Recovery Of Instance

ORA-01624: Log 1 Needed For Crash Recovery Of Instance
#oracle#error

Solutions(1)

Accepted Solution
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Get redo log Group Status :

select l.group#, l.thread#,

f.member,

l.archived,

l.status,

(bytes/1024/1024) fsize

from

v$log l, v$logfile f

where f.group# = l.group#

order by 1,2

To change the status from ACTIVE to INACTIVE, switch logfile multiple times, till the status is INACTIVE.

SQL> alter system switch logfile;

SQL> @log_member

alter system switch logfile;

SQL> @log_member

Once the redo log group status is INACTIVE, drop it.

SQL> alter database drop logfile group 1;

Database altered.

Hope It Helps !
OracleDba

Post Your Solution