Quantcast
Channel: Doyensys Allappsdba Blog..
Viewing all articles
Browse latest Browse all 1640

ORA-19815: WARNING: db_recovery_file_dest_size of 32212254720 bytes is 99.98% used, and has 5718016 remaining bytes available. ORA-19815: WARNING: db_recovery_file_dest_size of 1073741824 bytes is 100.00% used, and has 0 remaining bytes available.

$
0
0
Issue

ORA-19815: WARNING: db_recovery_file_dest_size of 32212254720 bytes is 99.98% used, and has 5718016 remaining bytes available.
ORA-19815: WARNING: db_recovery_file_dest_size of 1073741824 bytes is 100.00% used, and has 0 remaining bytes available.

Solution:


Its because your db_recovery_file_dest_size is full:

SQL> show parameter db_recovery_file_dest_size

NAME TYPE VALUE
———————————— ———– ——————————
db_recovery_file_dest_size big integer 45G
SQL>

SQL> set lines 100
col name format a60
select name, floor(space_limit / 1024 / 1024) “Size MB”, ceil(space_used / 1024 / 1024) “Used MB” from v$recovery_file_dest order by name;SQL> SQL>

NAME Size MB Used MB
———————————————————— ———- ———-
/data01/oracle/fast_recovery_area 46080 46080

SQL>

To Resolve this:

Connect to RMAN prompt.

-bash-3.2$ rman target /

Recovery Manager: Release 11.2.0.3.0 – Production on Tue Aug 11 06:54:21 2012

Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.

connected to target database: DB1 (DBID=12345)

RMAN>crosscheck archivelog all;

RMAN>delete expired archivelog all;

Viewing all articles
Browse latest Browse all 1640

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>