Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> [RMAN] backup to disk

[RMAN] backup to disk

From: Roman Klesel <rupa_at_firemail.de>
Date: Tue, 2 Mar 2004 14:52:07 +0000 (UTC)
Message-ID: <slrnc497so.24o.rupa@gemini.office.noris.de>


Hi dear DBAs,

we are doing an RMAN backup to disk:

run {
  allocate channel c1 type disk;
  backup
  incremental level 0
  tag FULL_DB
  format '/opt/oracle_backup/db_%d_%s_%p_%t'   (database include current controlfile);   release channel c1;
  allocate channel a1 type disk;
  sql 'alter system archive log current';   backup format '/opt/oracle_backup/arc_%d_%t_%s_%p'   (archivelog all);
  delete noprompt copy of archivelog all completed before 'sysdate-5';   release channel a1;
}

run {
  delete noprompt obsolete;
}

some hours later omiback picks up the backup and stores it to tape.

My question now is:

Can the backup now be deleted on disk?
Or will rman then get confused next time when it doesn't find it's files?

Greetings and thanks.

Roman Received on Tue Mar 02 2004 - 08:52:07 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US