Disable RMAN backups in Oracle 11g

oracleoracle-11grman

Recently I tinkered around with RMAN to see how it works, and somehow managed to get a regularly scheduled backup going. I don't really have the disk space or the need for RMAN to run, but I can't figure out how to stop it from creating backup sets. I think the original commands I used were:

$ rman target=/

RMAN> configure retention policy to redundancy 2;

RMAN> configure controlfile autobackup on;

RMAN> backup database plus archivelog delete input;

Best Answer

From what I can see, the job that has been scheduled is the automatic backup of the controlfile. That shouldn't eat up a lot of space, but you should be able to turn that off with:

RMAN> configure controlfile autobackup off;
Related Topic