RMAN Backup Time

How RMAN improves backup time?

Questions by shanthiavari

Showing Answers 1 - 18 of 18 Answers

kalyan_ck

  • Jul 26th, 2008
 

RMAN backup time consumption is very less than compared to regular online backup, as RMAN copies only modified blocks

  Was this answer useful?  Yes

Ravikumar

  • Sep 7th, 2011
 

Add channel to improve the Rman backup time

  Was this answer useful?  Yes

Ajay Chaudhary

  • Oct 12th, 2011
 

Oracle database help us to reduce time for taking backup using followings
1) Oracle performs BLOCKlevel backup.
2) DBA can allocate channels which will start the backup activity in PARALLEL, but we need to ensure that not too many channels have been allocated. Number of allocated channel should not be more than number of CPU.

  Was this answer useful?  Yes

atif waqar

  • Mar 31st, 2012
 

In 10g You can minimize backup time By "duration 00:30 minimize time;"

run{backup format /complete path duration 00:30 minimize time database}

ADD CHANNELS FOR IMPROVE PERFORMANCE ...

  Was this answer useful?  Yes

gzhang1970

  • May 6th, 2012
 

run rman BACKUP INCREMENTAL LEVEL 1 FOR RECOVER OF COPY WITH TAG incr_update DATABASE;
RECOVER COPY OF DATABASE WITH TAG incr_update;

If this is the first time to run it will create an incremental 0 backup copy of database and then subsequent backup will be incremental 1 and then recover the image copy by using this incremental 1 backup. It this way, we only backup 500Gb DB once and level 0 copy of database get forwarded each time.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions