2

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;
nw.
  • 723
  • 2
  • 8
  • 12

2 Answers2

1

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;
DCookie
  • 2,098
  • 17
  • 18
  • i tried this a while ago and just checked up on it after a few weeks... no backup sets to be found! – nw. Apr 14 '11 at 18:30
0

RMAN will only work if you tell him to. It doesn't have any scheduler. The autobackup of the control files isn't done on a regular basis but on response to some events ( see the documentation ) and should not cause disk issues (a control file weights only some megabytes).

You must have something scheduled, using Enterprise Manager, the Oracle DBMS_SCHEDULER and DBMS_JOB packages or the system scheduler.

Benoit
  • 3,499
  • 1
  • 18
  • 17