Book Image

Oracle Database XE 11gR2 Jump Start Guide

By : Asif Momen
Book Image

Oracle Database XE 11gR2 Jump Start Guide

By: Asif Momen

Overview of this book

Oracle Database XE 11gR2 is an excellent beginner-level database and is a great platform to learn database concepts. "Oracle Database XE 11gR2 Jump Start Guide" helps you to install, administer, maintain, tune, back up and upgrade your Oracle Database Express Edition. The book also helps you to build custom database applications using Oracle Application Express.Using this book, you will be able to install Oracle Database XE on Windows/Linux operating system.This book helps you understand different database editions and it guides you through the installation procedure with the aid of screenshots. You will learn to interact with the database objects. You will gain a solid understanding of stored sub-programs which is followed by an introduction to Oracle Application Express (APEX). Solid database performance tuning strategies are also discussed in this book followed by backup and recovery scenarios. All in all, "Oracle Database XE 11gR2 Jump Start Guide" delivers everything that you should know to get started with Oracle Database administration.
Table of Contents (20 chapters)
Oracle Database XE 11gR2 Jump Start Guide
Credits
About the Author
Acknowledgement
About the Reviewers
www.PacktPub.com
Preface

Managing the Flash Recovery Area


Oracle Database 11g XE stores database backups, redo logfiles, and archive redo logfiles in Flash Recovery Area (FRA). Optionally you can place a member of the multiplexed control file in FRA. The V$RECOVERY_FILE_DEST view provides details of FRA location and usage. Run the following query to determine the FRA details:

SQL> set line 100
SQL> column name format a45
SQL>
SQL> SELECT name,
2 ROUND(space_limit/1024/1024) space_limit,
3 ROUND(space_used/1024/1024) space_used,
4 ROUND(space_reclaimable/1024/1024) space_reclaimable
5 FROM v$recovery_file_dest;
NAME SPACE_LIMIT SPACE_USED SPACE_RECLAIMABLE
--------------------------------------------- ----------- ---------- -----------------
C:\oraclexe\app\oracle\ fast_recovery_area 10240 100 0
SQL>

Using the DB_RECOVERY_FILE_DEST and DB_RECOVERY_FILE_DEST_SIZE initialization parameters we can define the FRA location and size. To set the flash recovery area to 50 GB, enter the following commands...