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

Home -> Community -> Mailing Lists -> Oracle-L -> RE: RMAN backups

RE: RMAN backups

From: Allen, Brandon <Brandon.Allen_at_OneNeck.com>
Date: Tue, 21 Jun 2005 10:16:57 -0700
Message-ID: <04DDF147ED3A0D42B48A48A18D574C4502361168@NT15.oneneck.corp>


We do save a significant amount of time and space by using incremental backups:

SQL>select avg(elapsed_seconds)/60/60 from rc_backup_set where db_key=2300 and backup_type='D' and completion_time >= sysdate -45;

AVG(ELAPSED_SECONDS)/60/60


                 3.8742284

SQL>select avg(elapsed_seconds)/60/60 from rc_backup_set where db_key=2300 and backup_type='I' and completion_time >= sysdate -45;

AVG(ELAPSED_SECONDS)/60/60


                1.13801519

Regards,
Brandon

-----Original Message-----

From: oracle-l-bounce_at_freelists.org [mailto:oracle-l-bounce_at_freelists.org]On Behalf Of Ruth Gramolini Sent: Tuesday, June 21, 2005 10:05 AM
To: jrsmiley_at_gmail.com; richard.ignizio_at_paetec.com Cc: oracle-l_at_freelists.org
Subject: RE: RMAN backups

John,

Unless something has changed with 10g, and incremental backup doesn't actually save much time. Rman still has to read the block headers to see if the block needs to be backed up. It mostly saves space on disc if backing up to disk.

Correct me if I am wrong!
Ruth
-----Original Message-----

From: oracle-l-bounce_at_freelists.org [mailto:oracle-l-bounce_at_freelists.org]On Behalf Of John Smiley Sent: Saturday, June 18, 2005 11:19 AM
To: richard.ignizio_at_paetec.com
Cc: oracle-l_at_freelists.org
Subject: Re: RMAN backups

Backup times with RMAN are going to vary greatly depending upon the hardware and how many blocks need to be backed up. Even a very large database can be backed up incrementally if very few blocks have changed since the last backup with RMAN.

What might be a better yardstick is backup rate. The fastest RMAN backup rate I've seen was published by Amazon a few years back. They attained 2TB / hour.

John Smiley
Technical Management Consultant
TUSC, Inc.

Privileged/Confidential Information may be contained in this message or attachments hereto. Please advise immediately if you or your employer do not consent to Internet email for messages of this kind. Opinions, conclusions and other information in this message that do not relate to the official business of this company shall be understood as neither given nor endorsed by it.

--
http://www.freelists.org/webpage/oracle-l
Received on Tue Jun 21 2005 - 13:22:51 CDT

Original text of this message

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