RMAN gives me this error how should i resolve this issue:
ORA-19815: WARNING: db_recovery_file_dest_size of 7516192768 bytes is 100.00 used, and has 0 remaining bytes available.
Thanks in advance
|
RMAN gives me this error how should i resolve this issue:
ORA-19815: WARNING: db_recovery_file_dest_size of 7516192768 bytes is 100.00 used, and has 0 remaining bytes available.
Thanks in advance |
|||
|
Here is Oracle's answer. Basically your options are these: |
|||||||
|
SELECT * FROM V$RECOVERY_FILE_DEST;andSELECT * FROM V$RECOVERY_AREA_USAGE?SELECT NAME FROM V$RECOVERY_FILE_DEST;returns the name of the directory of the recovery file area. Can you show us the size of the disk/filesystem of the fast recovery area (e.g. bydf -k fast_recovery_area_directoryif it is a unix system)? It also would be useful to show the output of the commandSHOW RETENTION POLICY;in rman. – miracle173 Dec 26 '12 at 21:40