Book Image

OCA Oracle Database 11g: Database Administration I: A Real-World Certification Guide

Book Image

OCA Oracle Database 11g: Database Administration I: A Real-World Certification Guide

Overview of this book

Oracle Database Server is the most widely used relational database in the world today. This book gives you the essential skills to master the fundamentals of Oracle database administration and prepares you for Oracle DBA certification."OCA Oracle Database 11g: Database Administration I: A Real-World Certification Guide" prepares you to master the fundamentals of Oracle database administration using an example driven method that is easy to understand. The real world examples will prepare you to face the daily challenges of being a database administrator.Starting with the essentials of why databases are important in today's information technology world and how they work, you are then guided through a full, customized installation of the Oracle software and creating your own personal database. We then examine fundamental concepts of Oracle, including architecture, storage structures, security, performance tuning, networking, and instance management. Finally, we take an in-depth look at some of the most important concepts in the daily life of an Oracle DBA - backup, recovery, and data migration."OCA Oracle Database 11g: Database Administration I: A Real-World Certification Guide" provides you with the skills you need in order to become a successful Oracle DBA, both for certification and real life tasks.
Table of Contents (24 chapters)
OCA Oracle Database 11g: Database Administration I: A Real-World Certification Guide
Credits
Foreword
About the Author
About the Reviewer
www.packtpub.com
Preface
Index

Understanding the redo-based architecture


Recoverable databases don't happen by accident. They start with an RDBMS architecture that places a high degree of emphasis on recoverability. The goal of the Oracle RDBMS is to have a database that is completely recoverable—right up until the last committed transaction. A significant portion of the Oracle architecture exists specifically for the purpose of recoverability. We've mentioned a little already about Oracle's change-based redo architecture. Let's review this in more detail.

As changes accrue in the database, they are written to the redo log buffer. Then, periodically, the log buffer is written out to the redo logfiles. In Chapter 4, Examining the Oracle Architecture, we illustrated this. One of the three triggers for the log buffer to be flushed to the redo logs is when a COMMIT occurs. Thus every transaction has a "guaranteed write" to the redo logs. This is the cornerstone of why Oracle is recoverable until the last transaction. Generally...