Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Oracle Database 12c Backup and Recovery Survival Guide

You're reading from  Oracle Database 12c Backup and Recovery Survival Guide

Product type Book
Published in Sep 2013
Publisher Packt
ISBN-13 9781782171201
Pages 440 pages
Edition 1st Edition
Languages

Table of Contents (22) Chapters

Oracle Database 12c Backup and Recovery Survival Guide
Credits
About the Author
Acknowledgement
About the Author
Acknowledgement
About the Reviewers
www.PacktPub.com
Preface
Understanding the Basics of Backup and Recovery NOLOGGING Operations What is New in 12c User-managed Backup and Recovery Understanding RMAN and Simple Backups Configuring and Recovering with RMAN RMAN Reporting and Catalog Management RMAN Troubleshooting and Tuning Understanding Data Pump Advanced Data Pump OEM12c and SQL Developer Scenarios and Examples – A Hands-on Lab Index

Using the control file for RMAN metadata


RMAN maintains the repository of its metadata within the target database's control file. Being the default option, the control file acts as the primary location for RMAN. The control file maintains many internal structures, each with its own importance. For RMAN-related metadata within the control file, you can query the V$CONTROLFILE_RECORD_SECTION view (based on the fixed table X$KCCRS).

This view contains many different types of metadata sections, including the one specifically related to backup. Let's check how many total sections we have within the control file:

SQL> select count(distinct type) from v$controlfile_record_section;
COUNT(DISTINCTTYPE)
-------------------
         41

So, there are 41 unique sections available in the control file. Let's now restrict our query to show only those which are related to the backup:

SQL> select TYPE,RECORD_SIZE,RECORDS_TOTAL,RECORDS_USED
  2  from v$controlfile_record_section
  3  where type like ...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}