We got the following error when backing up an 11.2.0.4 database to an external disk. From the below error it is clearly showing there is no space left on the disk to hold new backup pieces.
Cause:1. The cleanup jobs is not running which deleted the old backups pieces.
2. Some one increase the value for control file recovery window .
3.Alert mechanism is not properly set for the file system .
Solution:1. connect to rman
$rman target /
rman> report obsolete;
if there is any obsolete backup found as a output of the above command .Run the below command to delete those backup pieces.
rman > delete obsolete;
This are the backups whose information are no longer available in controlfile.
2.If by deleting obsolete backup also space is not released than delete some old backup pieces but make sure those backup pieces are copied to tape .
3. Or move some backup pieces to other location where you have space.
Cause:1. The cleanup jobs is not running which deleted the old backups pieces.
2. Some one increase the value for control file recovery window .
3.Alert mechanism is not properly set for the file system .
Solution:1. connect to rman
$rman target /
rman> report obsolete;
if there is any obsolete backup found as a output of the above command .Run the below command to delete those backup pieces.
rman > delete obsolete;
This are the backups whose information are no longer available in controlfile.
2.If by deleting obsolete backup also space is not released than delete some old backup pieces but make sure those backup pieces are copied to tape .
3. Or move some backup pieces to other location where you have space.