Get an overview of rman database backups

Get an overview of rman database backups

This script will give you an overview of RMAN database backups including DB size, backup size and backup level. I use the SQL statement in an Enterprise Manager report. I use the script to monitor the backup process. The script provides this information: incremental backup type, the total size of the datafiles, the backed up size, and the ratio. The backup type is especially useful to monitor the backup strategy and the backup size and ratio is useful to calculate the need for backup storage (tapes). I have tested this on Oracle 8.0,8.1, 9.0 and 9.2.
select 
to_char(completion_time,'YYYYMMDD') "Backup Date",
max(incremental_level) "Level",
sum(round(DATAFILE_BLOCKS * BLOCK_SIZE / 1048576)) "Total DB Size (MB)",  
sum(round(BLOCKS * BLOCK_SIZE / 1048576)) "Backup (MB)",
round(sum(BLOCKS) / sum(DATAFILE_BLOCKS) * 100 ) "Ratio"
from v$backup_datafile 
group by to_char(completion_time,'YYYYMMDD';)
I often used the scripts in conjunction with the one below, which gives the same information for redologs.
select to_char(p.completion_time,'YYYYMMDD') "Backup date",
sum(round(b.BLOCKS * b.BLOCK_SIZE / 1048576)) "REDO Backup (MB)"
from
v$backup_redolog b,
v$backup_piece p
where
b.set_count=p.set_count AND
b.set_stamp=p.set_stamp
group by to_char(p.completion_time,'YYYYMMDD');

For More Information

  • Feedback: E-mail the editor with your thoughts about this tip.
  • More

    Requires Free Membership to View

    By submitting your registration information to SearchOracle.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchOracle.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

  • tips
    :
    Hundreds of free Oracle tips and scripts.
  • Tip contest: Have an Oracle tip to offer your fellow DBAs and developers? The best tips submitted will receive a cool prize -- submit your tip today!
  • Ask the Experts: Our applications, SQL, database administration, and data warehousing gurus are waiting to answer your toughest questions.
  • Forums: Ask your technical Oracle questions--or help out your peers by answering them--in our active forums.
  • Best Web Links: Oracle tips, tutorials, and scripts from around the Web.

This was first published in March 2004

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.

    Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.