Skip Headers
Oracle® Database 2 Day DBA
11g Release 2 (11.2)

E10897-10
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Master Index
Master Index
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
PDF · Mobi · ePub

9 Performing Backup and Recovery

This chapter introduces you to Oracle Database backup and recovery with Oracle Enterprise Manager Database Control. After reading this chapter, you should be familiar with the basic concepts of Oracle Database backup and recovery operations, know how to implement a disk-based backup strategy, and perform simple repairs to database files.

This chapter contains the following sections:

See Also:

Overview of Database Backup and Recovery

The focus in Oracle Database backup and recovery is on the physical backup of database files, which permits you to reconstruct your database. The files protected by the backup and recovery facilities built into Oracle Enterprise Manager Database Control (Database Control) include data files, control files, server parameter files, and archived redo log files. With these files you can reconstruct your database. The backup mechanisms work at the physical level to protect against file damage, such as the accidental deletion of a data file or the failure of a disk drive.

Oracle Recovery Manager (RMAN), a command-line and Enterprise Manager-based tool, is the method preferred by Oracle for efficiently backing up and recovering your Oracle database. RMAN is designed to work intimately with the server, providing block-level corruption detection during backup and restore. RMAN optimizes performance and space consumption during backup with file multiplexing and backup set compression, and integrates with leading tape and storage media products.

Logical backups, such as exporting database objects such as tables or tablespaces, are a useful supplement to physical backups, but cannot protect your whole database. An effective backup strategy must be based on physical backups.

The Oracle Database flashback features provide a range of physical and logical data recovery tools as efficient, easy-to-use alternatives to physical and logical backups. The flashback features enable you to reverse the effects of unwanted database changes without restoring data files from backup or performing media recovery.

This section introduces the following flashback features:

The first two features operate at the logical level, whereas the last feature operates at the physical level. None of the preceding features requires advance preparation such as creating logical exports to allow for retrieval of your lost data. You can use all of the features while your database is available. Oracle Database Backup and Recovery User's Guide discusses the flashback features of Oracle Database at greater length.

Note:

Oracle Flashback Database does not recover missing data files.

The Oracle Enterprise Manager physical backup and recovery features are built on the Recovery Manager (RMAN) command-line client. Database Control makes available many of the RMAN features, and provides wizards and automatic strategies to simplify and further automate RMAN-based backup and recovery.

Database Backup and Recovery Concepts

To back up your database means to make copies of your data files, control file, and archived redo log files (if your database runs in ARCHIVELOG mode). Restoring a database means copying the physical files that comprise the database from a backup medium, typically disk or tape, to their original or to new locations. Database recovery is the process of updating database files restored from a backup with the changes made to the database after the backup, typically using online redo log files.

Consistent and Inconsistent Backups

A backup is either consistent or inconsistent. To make a consistent backup, your database must have been shut down cleanly and remain closed for the duration of the backup. All committed changes in the online redo log files are written to the data files during the shut down process, so the data files are in a transaction-consistent state. When you restore your data files from a consistent backup, you can open the database immediately.

If the database is in ARCHIVELOG mode, then you can make inconsistent backups that are recoverable using archived redo log files. Open database backups are inconsistent because the online redo log files contain changes not yet applied to the data files. The online redo log files must be archived and then backed up with the data files to ensure recoverability.

Despite the name, an inconsistent backup is as robust a form of backup as a consistent backup. The advantage of making inconsistent backups is that you can back up your database while the database is open for updates.

See Also:

Media Recovery

If you restore the archived redo log files and data files, then you must perform media recovery before you can open the database. Any database transactions in the archived redo log files not reflected in the data files are applied to the data files, bringing them to a transaction-consistent state before the database is opened.

Media recovery requires a control file, data files (typically restored from backup), and online and archived redo log files containing changes since the time the data files were backed up. Media recovery is most often used to recover from media failure, such as the loss of a file or disk, or a user error, such as the deletion of the contents of a table.

Media recovery can be a complete recovery or a point-in-time recovery. In a complete recovery, you restore backup data files and apply all changes from the archived and online redo log files to the data files. The database is returned to its state at the time of failure and can be opened with no loss of data.

In a point-in-time recovery, you return a database to its contents at a user-selected time in the past. You restore a backup of data files created before the target time and a complete set of archived redo log files from backup creation through the target time. Recovery applies changes between the backup time and the target time to the data files. All changes after the target time are discarded.

Oracle Enterprise Manager Database Control (Database Control) provides an interface to both a complete and a point-in-time recovery in the form of a Recovery wizard. However, this documentation focuses on complete recovery.

See Also:

Fast Recovery Area

To simplify the management of backup and recovery files, you can create a fast recovery area for your database. The fast recovery area is an Oracle-managed directory, file system, or Oracle Automatic Storage Management disk group that provides a centralized disk location for backup and recovery files. Oracle creates archived logs and flashback logs in the fast recovery area. RMAN can store its backup sets and image copies in the fast recovery area, and it uses it when restoring files during media recovery. The fast recovery area also acts as a disk cache for tape.

Oracle Database automatically manages this storage, deleting files that are no longer needed. Periodically copying backups to tape frees space in the fast recovery area for other files. Oracle recommends that you enable a recovery area to simplify backup management. Except as noted, this documentation assumes the use of a recovery area.

See Also:

RMAN Repository

RMAN maintains a record of database files and backups for each database on which it performs operations. This metadata is called the RMAN repository.

If you back up a file without using RMAN, such as by copying the file at the host operating system level, then you can add metadata about the copy to the RMAN repository. If you later use a command such as RESTORE DATABASE, then RMAN uses the records in the repository to select backups needed for the recovery.

The primary location for the RMAN repository for a database is its control file. The importance of this metadata for RMAN is one more reason why protecting your control file is a vital part of your backup strategy. In some installations, a second copy of the RMAN repository is stored in a schema called the recovery catalog. The recovery catalog is located in a separate database and can store metadata for multiple databases. Use of a recovery catalog is optional and is beyond the scope of this documentation.

See Also:

Configuring Your Database for Basic Backup and Recovery

This section explains how to set up your database to take advantage of Oracle suggested backup strategies. If you configured the database for automated backups with the Oracle Database Configuration Assistant (DBCA), then skip this section.

To take maximum advantage of Oracle Database features that automatically manage backup and recovery files and operations, configure your database as follows:

You must also set several policies governing which files are backed up, what format is used to store backups on disk, and when files become eligible for deletion.

This section contains the following topics:

Specifying Credentials for Backup and Recovery Using Database Control

You must have the proper credentials to perform some configuration tasks for backup and recovery, and to schedule backup jobs and perform recovery. The following credentials may be required:

  • The Oracle Database user you specify when you log in to Oracle Enterprise Manager Database Control (Database Control)

  • The host operating system user whose credentials you provide when performing backup and recovery tasks

To enter credentials for backup and recovery tasks:

  1. Log in to Database Control as a database user with SYSDBA privileges, or provide host operating system credentials for a user in the dba group on UNIX or Linux, or the ora_dba group on Microsoft Windows.

    The host operating system user must also have execute permission for the RMAN command-line client.

    Note:

    The host user may require certain host privileges to run background jobs such as database backups. For example, on UNIX and Linux, the host user must belong to the OSDBA group (typically dba), and on Windows, the host user must be a member of the Administrators group and must be granted the Log on as batch job logon right. See your platform documentation for more information.

    For tasks requiring host operating system credentials, a Host Credentials form appears at the bottom of the page used to perform the task. Enterprise Manager uses the credentials when it starts RMAN jobs that you requested or scheduled.

  2. Optionally, in the Host Credentials form, select Save as Preferred Credential.

    If you select this option before performing your action, then the provided credentials are stored persistently for the currently logged-in Oracle Database user. The preferred credentials are reused by default whenever you log in as that user and perform operations requiring host credentials.

    Note:

    In situations in which the database is shut down, you may still be prompted for host credentials even if you have saved the preferred credentials.

Planning Space Usage and Location for the Fast Recovery Area

You should place the fast recovery area on a separate disk from the working set of database files. Otherwise, the disk becomes a single point of failure for your database.

The amount of disk space to allocate for the fast recovery area depends on the size and activity levels of your database, which determine the size of your data files and online redo log files in addition to your recovery objectives. Your objectives dictate what kinds of backups you use, when you make them, and how long to keep them.

About the Backup Retention Policy and the Fast Recovery Area

Space management in the fast recovery area is governed by a backup retention policy. A retention policy determines when files are obsolete, meaning that they are no longer needed to meet your data recovery objectives.

Retention policies can be based on redundancy of backups or on a recovery window (period of time). When using a policy based on redundancy, the fast recovery area considers a backup of a file obsolete only when the RMAN repository has records of a specified number of more recent backups of that file. When using a recovery policy based on a period of time (or window), you specify a time interval in days. Files are obsolete only when they are no longer needed for complete recovery or point-in-time recovery to a system change number (SCN) within the window. Therefore, a recovery retention policy based on a window is recommended.

Even after files in the fast recovery area are obsolete, they are typically not deleted until space is needed for new files. If space permits, files recently moved to tape remain on disk to avoid restoring them from tape for a recovery. The automatic deletion of obsolete files and files moved to tape from the fast recovery area makes it a convenient archiving destination. Other destinations require manual deletion of logs.

About the Fast Recovery Area Size

Oracle Database Backup and Recovery User's Guide explains how to size the fast recovery area. As a general rule, the larger the fast recovery area, the more useful it is. Ideally, the fast recovery area should be large enough for copies of the data files, control files, online redo log files, and archived redo log files needed to recover the database, and also the copies of these backup files that are kept based on the retention policy.

If your backup strategy includes incremental backups, which are described in "Incremental Backups of Data Files", then add enough space to the fast recovery area for these files. If you can move some backups to tape, then you can reduce the size of the fast recovery area. Note that retrieving files from tape causes longer database restore operations and recovery times.

Configuring Recovery Settings

In the Recovery Settings page, you can configure settings for instance recovery, media recovery, and fast recovery. In this section, you configure the fast recovery area and enable archiving for the database.

You can configure a fast recovery area when first creating the database. If you did not perform this task at database creation time, however, then you can create a fast recovery area for your database now.

To configure a fast recovery area and put the database in ARCHIVELOG mode:

  1. On the host operating system, create a directory to hold the fast recovery area. If you are using Oracle ASM for your storage, then create a new disk group.

    Make sure that the operating system permissions for the directory or disk devices allow the database to create files.

  2. Log in to Enterprise Manager Database Control as user SYS.

  3. On the Database Home page, click Availability to display the Availability subpage.

  4. In the Backup/Recovery section, click Recovery Settings.

    The Recovery Settings page appears.

  5. Complete the following steps:

    1. In the Media Recovery section, select ARCHIVELOG Mode.

    2. If USE_DB_RECOVERY_FILE_DEST is not set as an archiving destination, then set it.

      This initialization parameter indicates that the fast recovery area should be an archiving destination.

      For ease of database management, the best practice is to use the fast recovery area as your only archiving destination.

    3. In the Fast Recovery section, enter the path to the fast recovery area created in Step 1 in Fast Recovery Area Location, and select a value for Fast Recovery Area Size.

    4. Select Enable Flashback Database.

      This option specifies that the database should generate flashback logs in the fast recovery area, enabling you to use Flashback Database. During usual operation, the database occasionally logs images of data blocks to the flashback logs. The database automatically creates, deletes, and resizes flashback logs.

    5. Ensure that the Apply initialization parameter changes to SPFILE only box is not selected.

    6. Click Apply to save your changes.

      A message prompts you to restart the database.

  6. Click Yes.

    The Restart Database: Specify Host and Target Database Credentials page appears.

  7. Enter your host and database credentials, and then click OK.

    See "Specifying Credentials for Backup and Recovery Using Database Control" for information about credentials.

  8. On the Restart Database: Confirmation page, click Yes to begin the restart operations.

    You can click Refresh periodically to monitor the progress of the operation.

  9. Make a consistent (that is, offline) backup of your entire database immediately after switching your database to ARCHIVELOG mode.

    Caution:

    You cannot use backups from before the switch to ARCHIVELOG mode to restore and recover the database to a point in time after the switch. Thus, if you do not immediately make a backup after switching, then you are running your database without a valid backup. See "Performing and Scheduling Backups Using Database Control" to learn how to make database backups.

See Also:

Monitoring Fast Recovery Area Usage

It is important to monitor space usage in the fast recovery area to ensure that it is large enough to contain backups and other recovery-related files.

To monitor available space in the fast recovery area:

In the High Availability section of the Database Home page, click the link next to Usable Fast Recovery Area (%).

The Recovery Settings page appears.

The Reclaimable Recovery Area (GB) and Free Recovery Area (GB) settings indicate how much space is available.

Configuring Backup Settings

You can configure several backup-related settings and policies. For example, you can determine how backups are stored, which data is backed up, and how long backups are retained. You can also configure settings to optimize backup performance.

This section explains the concepts behind the available settings and also explains how to change them using the Backup Settings page in Database Control. The settings on the Device subpage affect how RMAN writes backups to disk and to tape.

About RMAN Backups

Database backups created by RMAN are stored as image copies or backup sets.

Image copies are exact byte-for-byte copies of files. You can create an image copy by copying a file at the operating system level. Unlike copying files at the operating system level, however, image copies created through RMAN or Database Control are recorded in the RMAN repository so that RMAN can use these copies during database restore operations and recovery. RMAN can restore files only if they are recorded in the RMAN repository. RMAN can create image copies only on disk.

Backup sets are logical entities produced by the RMAN BACKUP command. This command can produce one or more backup sets on disk or media management devices. RMAN can write backup sets only to a media manager.

Each backup set contains several physical files called backup pieces. A backup piece stores the backup of one or more database files in a compact RMAN-specific format. One advantage of backup sets is that RMAN uses unused block compression to save space in backing up data files. Only those blocks in the data files that have been used to store data are included in the backup set.

RMAN depends on server sessions, processes that run on the database server, to create backups and restore them. Each server session, in turn, corresponds to an RMAN channel, representing one stream of data to or from a backup device. Channels are either of type disk or type SBT (tape).

RMAN supports parallelism, which is the use of multiple channels and server sessions to perform the work of one backup or recovery task. Proper use of parallelism can greatly increase performance on backup and recovery tasks.

See Also:

Configuring Backup Device Settings

For disk-based backups, you can configure the default format for backups, the location on disk where backups are stored, and whether backup tasks run in parallel.

For tape backups, you can configure settings such as the number of tape drives and whether backups are compressed. On most platforms, you must integrate a media manager with the Oracle database to use sequential media for storage.

You can use Oracle Secure Backup, which supports both database and file system backups to tape, as your media manager. Oracle Secure Backup provides the same services for RMAN as other third-party SBT interfaces, but is better integrated with Database Control. This section assumes that you make only disk backups.

To configure backup settings for disk:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. In the Backup/Recovery section, click Backup Settings.

    The Backup Settings page appears.

  3. At the top of the page, click Device.

    The Device subpage of Backup Settings appears.

  4. Complete the following steps:

    1. In Parallelism, enter 1.

      Later, when you have had time to review the information in Oracle Database Backup and Recovery User's Guide about parallelism and performance in RMAN, you may want to change this value.

    2. Leave the Disk Backup Location field blank so that RMAN directs backups to the fast recovery area.

    3. In the Disk Backup Type section, select Backup Set.

      One advantage of backup sets is that RMAN uses unused block compression to save space when backing up data files. Only those blocks in the data files that have been used to store data are included in the backup set.

  5. In Host Credentials section at the bottom of the page, enter values in the Username and Password fields.

    Host credentials are described in "Specifying Credentials for Backup and Recovery Using Database Control".

  6. Click Test Disk Backup (near the top of the page) to ensure the credentials and backup location are correct.

    A message appears that states whether the test was successful.

    In this example you do not change the settings on the Backup Set subpages.

See Also:

Configuring Backup Policy Settings

You can set the backup policies that govern control file and server parameter file backups, tablespaces to exclude from an entire database backup, and the backup retention policy.

To configure the backup policy settings:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. In the Backup/Recovery section, click Backup Settings.

    The Backup Settings page appears.

  3. At the top of the page, click Policy.

    The Backup Policy subpage appears.

  4. Perform the following actions:

    • Select the Automatically backup the control file and server parameter file (SPFILE) with every backup and database structural change option. Leave the Autobackup Disk Location field blank so that RMAN stores the automatic backups in the fast recovery area.

      The server parameter file and control file are critical to the database and RMAN, and are also relatively small compared to typical data files. Backing them up frequently results in relatively little storage overhead.

    • Select the Optimize the whole database backup by skipping unchanged files such as read-only and offline data files that have been backed up option.

      This option saves space in the fast recovery area.

    • Select the Enable block change tracking for faster incremental backups option. Either leave the Block Change Tracking File field blank (if you specified Oracle Managed Files when creating the database) or enter a file name (including path).

      This option takes advantage of the block change tracking feature, which greatly improves incremental backup performance at a small cost of overhead.

  5. In the Tablespaces Excluded From Whole Database Backup section, leave the settings as they are.

    This feature enables you to specify a list of tablespaces to exclude from a backup. For example, you do not have to include read-only tablespaces in every backup.

  6. In the Retention Policy section, select Retain backups that are necessary for a recovery to any time within the specified number of days (point-in-time recovery). In Days, enter 31.

    This setting enables a recovery policy with retention based on a period of time.

  7. In the Archivelog Deletion Policy section, select None.

    This option specifies that logs are eligible for automatic deletion only when they have been backed up to tape or are obsolete based on the retention policy.

  8. At the bottom of the page, click OK to save your changes.

See Also:

Backing Up Your Database

This section describes how to back up your database with Oracle Enterprise Manager Database Control (Database Control). The Oracle suggested strategy for disk-only backups provides efficient daily backup of the database. This strategy enables you to quickly return your database to its state at any point during the previous 24 hours. For more flexible backup options, see Oracle Database Backup and Recovery User's Guide.

RMAN Backup Concepts

This section provides the concepts you need to understand the Oracle suggested backup strategy and other backup types provided through Database Control.

Full Backups of Data Files

A full backup of a data file includes all used blocks of the data file. As explained in "About RMAN Backups", an RMAN backup can be either an image copy or backup set. An image copy is a bit-for-bit copy of the data file, and thus includes unused blocks.

Incremental Backups of Data Files

RMAN incremental backups copy only those blocks in a data file that change between backups. A level 0 incremental backup, which copies all blocks in the data file, is used as a starting point for an incremental backup strategy.

Incremental backups at level 1 copy only images of blocks that have changed since a previous incremental backup. Level 1 backups can be cumulative, in which case all blocks changed since the most recent level 0 backup are included, or differential, in which case only blocks changed since the most recent level 0 or level 1 incremental backup are included. A typical incremental strategy makes level 1 backups at regular intervals such as once each day.

Recovering changed blocks from incremental backups can speed media recovery. Because an incremental level 1 backup copies the final contents of all data file blocks changed during the period covered by the incremental backup strategy, the recovery process can avoid reapplying updates from the archived redo log files of that period, and update each block with its final contents. The archived redo log files are used only for changes from the period not covered by level 1 backups.

Incrementally Updated Backups: Rolling Forward Image Copies of Data Files

RMAN enables you to apply level 1 incremental backups to an older image copy of your data files. You can roll forward the copy to the point in time of the most recent level 1 incremental backup. All blocks changed since the image copy was created are overwritten with their new contents as of the time of the last level 1 incremental backup. The effect is to roll forward the file in time, so that its contents are equivalent, for the purposes of database recovery, to an image copy of the data file made at the time of the last incremental level 1 backup.

Incorporating incrementally updated backups into your backup strategy shortens expected recovery times. Media recovery to the present time or to a point in time in the recent past can begin at the time of the last level 1 backup applied, rather than at the time of the last full database backup.

Backup Tags

A tag is a text string that identifies that backup, either uniquely or as part of a group of backups. All RMAN backups, including incremental backups, are labeled with a tag. For example, if you performed a full database backup every Saturday, then you could use the tag FULL_SAT to identify this backup.

You can use tags to refer to specific backups in RMAN commands. For example, you could issue a command to move the latest FULL_SAT backup to tape. If you do not specify a tag, then RMAN creates a unique tag automatically.

Because you can use tags to refer to different groups of backups, you can create different routines in your backup strategy that do not interfere with each other. When you schedule a backup job and give the job a name, the job name is the tag.

Performing and Scheduling Backups Using Database Control

Database Control enables you to perform RMAN backups and schedule backup jobs required by your backup strategy.

Performing a Whole Database Backup

Whole backups of a database include the complete contents of all data files of the database, also the control file, archived redo log files, and server parameter file. With these files, you can perform a complete recovery.

While whole database backups can be an important element in your overall backup strategy, they are also a required step in some situations, such as when you enable or disable ARCHIVELOG mode (see "Configuring Recovery Settings"). This section explains how to make whole database backups to disk.

To perform a whole database backup when the database is open:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. In the Manage section of the Availability page, click Schedule Backup.

    The Schedule Backup page appears.

    Description of back_strat_11gr1.gif follows
    Description of the illustration back_strat_11gr1.gif

  3. In the Host Credentials section at the bottom of the page (not shown in the figure), enter values in the Username and Password fields if the Preferred Credentials are not set.

  4. In the Customized Backup section, select Whole Database, and then click Schedule Customized Backup.

    The Schedule Customized Backup: Options page appears.

  5. In the Backup Type section, select Full Backup.

  6. In the Backup Mode section, select either Online Backup or Offline Backup.

    Typically, you want to perform online backups to maximize database availability.

    Note:

    As explained in "Configuring Your Database for Basic Backup and Recovery", you can make online backups only if your database is running in ARCHIVELOG mode.
  7. In the Advanced section, make the following selections, and then click Next:

    • If you are performing an online backup, then select Also back up all archived logs on disk.

      You do not have to back up archived logs when performing an offline backup because the database is in a consistent state at the time of backup and does not require media recovery if you restore the database from this backup. However, you can choose to include archived logs in the backup.

    • If a fast recovery area is your only archiving destination, then do not select "Delete all archived logs from disk after they are successfully backed up".

      In this case, archived redo log files that have been backed up are deleted automatically as space is needed. If you are using some other archiving destination, then it may be useful to select this option as part of managing your backup storage.

    • If the fast recovery area stores backups, then do not select the "Delete obsolete backups" option.

      In this case, obsolete backups are deleted automatically as space is needed. If you use another destination for your backup files, then you can select this option.

    • Do not select "Use proxy copy supported by media management software to perform a backup" for now.

    • Do not enter a value in the Maximum Files per Backup Set field or the Section Size field.

    The Schedule Customized Backup: Settings page appears.

  8. Select Disk and then click Next.

    Oracle recommends backing up to disk when possible to minimize recovery time by minimizing restore operations from tape. Later, you can move disk backups to tape.

    The Schedule Customized Backup: Schedule page appears.

  9. Complete the following steps:

    1. In the Job section, leave the default values for Job Name and Job Description.

      In the Job Name field, you can enter a user-specified tag for this backup. The job name is used as a prefix for the backup tag for backups created by this job.

      Note:

      For recurring jobs, it is useful to set a Job Name so that the resulting backups are easy to identify as part of an ongoing series. Use a descriptive tag, such as WEEKLY_FULL_BACKUP.

      In the Job Description field, you can enter any descriptive text that is useful for your own reference.

    2. In the Schedule section, select One Time (Immediately), and then click Next.

      The Schedule Customized Backup: Review page appears.

  10. Click Submit Job.

    The Status page appears. This page should contain a message that indicates the job was successfully submitted.

  11. Click View Job to monitor the progress of the backup.

    The Execution page for your database appears. This page contains a Summary section describing the job. The table at the bottom of the page displays the progress of the various steps of the backup job. You can reload this page in your browser to monitor the ongoing progress of the job.

    In the Name column of the table, you can see the current phase of the RMAN job. Clicking the name of the phase of the backup job displays a page containing the RMAN output for that part of the job. If you clicked on a job phase link, then from your current page, click the Execution: Database_name link at the top of the page to return to Execution page for your database.

To perform a whole database backup when the database is closed:

  • Follow the same steps as for an open database backup, except select Offline Backup in Step 5 and then continue with the steps that follow.

Using the Oracle Suggested Backup Strategy

Database Control makes it easy to set up an Oracle suggested backup strategy for backups to disk that protects your data and provides efficient recoverability to any point in the user-specified recovery window (time period). The Oracle suggested strategy leverages the incremental backup and incrementally updated backup features to provide faster backups than whole database backups, and faster recoverability than is possible through applying database changes from the archive log to your data files.

About the Oracle Suggested Backup Strategy

The Oracle suggested strategy is based on creating an image copy of your database. The database rolls forward this copy by using incrementally updated backups. Oracle Enterprise Manager schedules RMAN backup jobs during the overnight hours.

For each data file, the strategy calls for backups as follows:

  • At the beginning of day 1 of the strategy (the time the first scheduled job actually runs), RMAN creates an incremental level 0 data file copy. It contains the data file contents at the beginning of day 1.

    If a recovery is required, then the archived redo log files from day 1 can be used to recover to any point during day 1.

  • At the beginning of day 2, RMAN creates a differential incremental level 1 backup that contains the blocks changed during day 1.

    If a recovery is required, then RMAN can apply this incremental level 1 to roll forward the level 0 backup to the beginning of day 2. RMAN can use archived redo log files to recover to any point during day 2.

  • At the beginning of each day n for day 3 and onward, RMAN applies the level 1 backup from the beginning of day n-1 to the level 0 backup. This action brings the data file copy to its state at the beginning of day n-1. Then, RMAN creates a new level 1 backup that contains the blocks changed during day n-1.

    If a recovery is required, then RMAN can apply this incremental level 1 backup to the data file rolled forward on day n-1 to the beginning of day n. RMAN can use archived redo log files to recover the database to any point during day n.

In the Oracle suggested backup strategy, data file copies have the tag ORA$OEM_LEVEL_0. The differential level 1 incremental backups in this strategy share the same tag. You can safely implement other backup strategies without interfering with the Oracle suggested backup strategy.

Oracle suggested backup strategies also use tape backups in addition to disk backups, but these are beyond the scope of this section.

Backing Up Your Database Using the Oracle Suggested Disk Backup Strategy

The following procedure schedules daily database backups. The strategy uses incremental backups and incrementally applied backups to enable quick recovery to any time in the preceding 24 hours.

To backup your database using the Oracle-suggested disk backup strategy:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. In the Manage section of the Availability page, click Schedule Backup.

    The Schedule Backup page appears.

  3. In the Oracle-Suggested Backup section, click Schedule Oracle-Suggested Backup.

    The Schedule Oracle-Suggested Backup: Destination page appears. On this page, you select the destination media for the backup, which can be disk, tape, or both.

  4. Select Disk and then click Next.

    The Schedule Oracle-Suggested Backup: Setup page appears.

    This page describes the backups that are performed each day as part of the disk-based strategy.

  5. Review the information and then click Next.

    The Schedule Oracle-Suggested Backup: Schedule page appears.

  6. Choose a Start Date, Time Zone, and Daily Backup Time for the daily backups, and then click Next.

    The Schedule Oracle-Suggested Backup: Review page appears.

    Database Control displays the backup script that RMAN will run (although you cannot edit the script directly). The script should look similar to the following:

    Daily Script:
    run {
    allocate channel oem_disk_backup device type disk;
    recover copy of database with tag 'ORA_OEM_LEVEL_0';
    backup incremental level 1 copies=1 for recover of copy with tag 'ORA_OEM_LEVEL_0' database;
    }
    
  7. Click Submit Job.

Scheduling Miscellaneous Backup Tasks

After taking some time to understand the full range of available backup options described in Oracle Database Backup and Recovery User's Guide you may decide to schedule backup tasks beyond those used to implement the Oracle suggested backup strategy.

To schedule miscellaneous backup tasks:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. In the Manage section of the Availability page, click Schedule Backup.

    The Schedule Backup page appears.

  3. In the Customized Backup section, select the object to back up. For example, select Tablespaces or Archivelogs.

  4. Make sure the host credentials have been filled in, then click Schedule Customized Backup to start the Schedule Customized Backup wizard.

  5. On the following pages of the wizard, specify details such as objects to back up, and required options and settings. Click Next on each page to proceed to the next page.

    The choices presented on these pages are determined by the type of objects being backed up. For example, to backup a tablespace, on the first page of the wizard you would click the Add button to specify the tablespaces you want to include in the backup job. On the following pages, you would select the backup options, location, and schedule.

    For more information about using the wizard, click Help on any page.

  6. Click Submit Job.

Validating Backups and Testing Your Backup Strategy

As part of your backup strategy, you should periodically check whether your backups are intact and can be used to meet your recoverability objectives. You can validate your backups in the following ways:

  • Select specific backup sets or image copies in Database Control and validate them. This technique indicates if a backup exists and can be restored. For this form of validation, use the Manage Current Backups pages as described in "Validating Selected Backups".

  • Specify database files and let RMAN select backups to use when restoring those files, as it would for an actual restore operation. This technique ensures that your available backups are sufficient to restore the database. For this form of validation, use the Perform Recovery pages as described in "Validating Backups for Restore Operations".

    Note:

    Validating backups stored on tape can be time-consuming because the entire backup is read from tape.

You can set up both forms of validation as scheduled tasks in Database Control. You should incorporate both forms of validation into your backup strategy to ensure that your recoverability goals are met by your available backups.

Validating Selected Backups

Validating specific backups checks whether these backups exist and can be restored. It does not test whether the set of available backups meet your recoverability goals. For example, image copies of data files for several tablespaces from your database may exist, each of which can be validated. If there are some tablespaces for which no valid backups exist, however, then you cannot restore and recover the database.

To validate selected backups:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. In the Availability page, in the Manage section, click Manage Current Backups.

    The Manage Current Backups page appears.

  3. Use the search features on this page to identify the backups whose contents you want to validate.

  4. Select the check boxes next to each backup of interest in the list of current backups, and then click Validate.

    The Validate: Specify Job Parameters page appears.

  5. Specify a job name and description (or use the default values), and time settings for starting and repeating the operation. Click Submit Job.

    A message confirms the submission of the job.

  6. Click the View Job link to display details about the validation.

See Also:

Validating Backups for Restore Operations

You can test whether a sufficient set of backups exists that can be used to restore the specified database files. After you specify which tablespaces to restore and, possibly, a time as of which to restore them, RMAN selects a set of backups that contain the needed data. RMAN reads the selected backups in their entirety to confirm that they are not corrupt, but does not produce output files.

Validating the restoration of files tests whether the file can be restored given the available backups, but it does not test whether all backups of the specified object are valid.

To verify whether specified database files can be restored:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. In the Manage section of Availability page, click Perform Recovery.

    The Perform Recovery page appears.

  3. In the User-Directed Recovery section, select Datafiles or Tablespaces from the Recovery Scope list, depending on what you want to validate.

  4. For the Operation Type, select Restore Datafiles or Restore Tablespaces and then click Recover.

    The Perform Object Level Recovery page appears.

  5. Click Add to add tablespaces or data files for the validate operation. Select the data files or tablespaces to restore, then click Select. After making your selections, click Next.

    The Perform Object Level Recovery: Restore page appears.

  6. In the Backup Selection section, specify which backups should be restored. Typically you would select the most recent backup.

  7. In the Backup Validation section, select Validate the specified backup without restoring the data files. Then, click Next.

    The Perform Object Level Recovery: Schedule page appears.

  8. The job to validate the backup runs immediately. You can specify a Job Name and Job Description, or use the default values. Click Next.

    The Perform Object Level Recovery: Review page appears.

  9. Click Submit Job to run the validation.

    The Perform Recovery: Result page appears.

  10. (Optional) Click View Job to see the results of the Backup Validation job.

See Also:

Displaying Backup Reports

Backup reports contain summary and detailed information about past backup jobs run by RMAN, including both backups run through Oracle Enterprise Manager Database Control (Database Control) and the RMAN command-line client.

To display backup reports:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. In the Availability page, in the Manage section, click Backup Reports.

    Description of backup_reports_11gr1.gif follows
    Description of the illustration backup_reports_11gr1.gif

    The Backup Reports page contains a list of recent backup jobs. You can use the Search section of the page to restrict (filter) the backups listed by the status of the job, the start time of the backup, and the type. In the Search sections, specify any filter conditions and click Go.

  3. Click a link in the Backup Name column to display detailed information about any backup.

    The Backup Report page is displayed for the selected backup. Use the Back button of your browser to return to the Backup Reports page.

  4. Click the link in the Status column to view a log of RMAN output for the job.

    Note:

    The control file view V$RMAN_OUTPUT contains the output of recent RMAN jobs. The contents of this view are not preserved when the instance is restarted. Therefore, the output from past RMAN jobs may not be available.

Managing Backups

As part of a backup strategy, you must manage database backups. A related task is managing the record of those backups in the RMAN repository. Oracle Enterprise Manager Database Control (Database Control) simplifies these tasks.

About Backup Management

An essential part of a backup and recovery strategy is managing backups after you create them. Backup management includes deleting obsolete backups and performing periodic checks to ensure that backups are available and usable.

You can perform backup management tasks from the Manage Current Backups page.

To display the Manage Current Backups page:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. In the Availability page, in the Manage section, click Manage Current Backups.

This page has two subpages: Backup Sets and Image Copies. Both pages have similar purposes: listing backups based on the record in the RMAN repository and enabling you to manage the backups.

Description of manage_backups_11gr2.gif follows
Description of the illustration manage_backups_11gr2.gif

A backup recorded in the RMAN repository has one of the following status values:

  • Available, meaning that the backup is still present on disk or tape, as recorded in the repository

  • Expired, meaning that the backup no longer exists on disk or tape, but is still listed in the repository

  • Unavailable, meaning that the backup is temporarily not available for data recovery operations (because, for example, it is stored on a tape that is stored offsite or on a disk that is currently not mounted)

Backups can also be obsolete. An obsolete backup is, based on the currently configured retention policy, no longer needed to satisfy data recovery goals.

Maintenance tasks that you can perform in Database Control include the following:

  • Viewing details about your backups

  • Cross-checking your repository, which means checking whether backups listed in the repository exist and are accessible, and marking as expired any backups not accessible at the time of the cross-check

  • Deleting the record of expired backups from your RMAN repository

  • Deleting obsolete backups from the repository and from the backup media

  • Validating backups to ensure that a given backup is available and not corrupted

Note:

If a backup no longer exists, then immediately delete the backup record from the RMAN repository. Without an accurate record of available backups, you may discover that you no longer have complete backups of your database when you must perform a recovery.

As with the backup and restore commands in Database Control, the commands to cross-check, delete, and change the status of backups are translated to RMAN commands. The commands are submitted as RMAN jobs that can be run immediately or be scheduled. Some tasks, such as periodic cross-checks of your backups, should be among the regularly scheduled components of your backup strategy.

If you use a fast recovery area for backup storage, then many maintenance activities are reduced or eliminated. The automatic disk space management mechanisms delete backups and other files as needed, thereby satisfying disk space demands for ongoing database operations without compromising the retention policy.

Cross-Checking Backups

Cross-checking a backup synchronizes the physical reality of backups with their logical records in the RMAN repository. For example, if a backup on disk was deleted with an operating system command, then a cross-check detects this condition. After the cross-check, the RMAN repository correctly reflects the state of the backups.

Backups to disk are listed as available if they are still on disk in the location listed in the RMAN repository, and if they have no corruption in the file header. Backups on tape are listed as available if they are still on tape. The file headers are not checked for corruption. Backups that are missing or corrupt are listed as expired.

To cross-check individual files:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. In the Manage section, click Manage Current Backups.

    The Manage Current Backups page appears.

  3. Search for the backup sets or image copies whose contents you want to cross-check.

  4. In the Results section, select each backup to be included in the cross-check operation.

    Database Control does not support selecting both image copies and backup sets for a cross-check within a single operation.

  5. Click Crosscheck at the top of the Results list.

    A confirmation page is displayed. After you click Yes, Database Control performs the cross-check.

To cross-check all files:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. In the Manage section, click Manage Current Backups.

    The Manage Current Backups page appears.

  3. In the Manage Current Backups page, click Crosscheck All.

    The Crosscheck All: Specify Job Parameters page appears. You can schedule the cross-check to run now or later, or specify regularly scheduled cross-checks.

  4. Click Submit Job.

Note:

Cross-checking all backups in the RMAN repository may take a long time, especially for tape backups. A cross-check of all files, unlike cross-checking individual files, is handled as a scheduled job.

See Also:

Deleting Expired Backups

Deleting expired backups removes from the RMAN repository those backups that are listed as EXPIRED. Expired backups are those found to be inaccessible during a cross-check. No attempt is made to delete the files containing the backup from disk or tape; this action updates only the RMAN repository.

To delete expired backups:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. In the Manage section, click Manage Current Backups.

    The Manage Current Backups page appears.

  3. In the Manage Current Backups page, click Delete All Expired.

    This action deletes expired backup sets and expired image copies from the RMAN repository, regardless of which subpage is currently active.

    The Delete All Expired: Specify Job Parameters page appears.

  4. Optionally, select Perform the operation 'Crosscheck All' before 'Delete All Expired'.

    By performing the cross-check immediately before deleting expired backups, RMAN has up-to-date information about which backups are expired.

  5. Click Submit Job.

    A message should appear indicating that your job was successfully submitted.

Marking Backups as Available or Unavailable

If one or more specific backups are unavailable because of a temporary condition, such as a disk drive that is temporarily offline or a tape stored offsite, then you can mark those backups as unavailable. RMAN does not use unavailable backups to restore or recover data.

Note:

Backups stored in the fast recovery area cannot be marked as unavailable.

RMAN keeps the record of unavailable backups in the RMAN repository and does not delete backups listed as unavailable when you delete expired backups. If the unavailable backups become accessible again, then you can mark them as available.

To mark backups as available or unavailable:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. In the Manage section, click Manage Current Backups.

    The Manage Current Backups page appears.

  3. In the Search section, find the backups whose status you want to change.

  4. Click the Select check box next to each backup in the Results list of backups for which you want to change its availability.

  5. Do one of the following:

    • Select Change to Available.

    • Select Change to Unavailable.

    Note:

    If you restricted the backups listed by searching only for available backups, then only the Change to Unavailable button appears. If you restricted the backups listed by searching only for unavailable backups, then only the Change to Available button appears.

    A confirmation message appears.

  6. Click Yes to perform the change operation.

Deleting Obsolete Backups

This section explains how to delete obsolete backups, which are those no longer needed by the configured retention policy. If you use a fast recovery area as your only disk-based backup destination, then you never have to delete obsolete backups from disk. The fast recovery area keeps files as specified by the retention policy, and deletes them only when space is needed.

To delete obsolete backups:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. In the Manage section, click Manage Current Backups.

    The Manage Current Backups page appears.

  3. Click Delete All Obsolete.

    All obsolete backups (both backup sets and image copies) are deleted, regardless of whether you clicked Delete All Obsolete while viewing the Backup Sets or Image Copies subpage.

    The Delete All Obsolete: Specify Job Parameters page appears.

  4. In the Schedule section, do one of the following:

    • Select One Time (Immediately) to run the deletion job immediately.

    • Schedule the deletion as you would a backup job.

  5. Click Submit Job.

Performing Oracle Advised Recovery

The Oracle advised recovery feature uses Data Recovery Advisor, which is an Oracle Database feature that automatically diagnoses data failures, determines and presents appropriate repair options, and performs repairs if requested by the user. By providing a centralized tool for automated data repair, Data Recovery Advisor improves the manageability and reliability of an Oracle database.

Note:

To recover an Oracle RAC database using Data Recovery Advisor you must use the RMAN interface. You cannot use Enterprise Manager.

About Data Recovery Advisor

In the context of Data Recovery Advisor, a health check is a diagnostic procedure run by the Health Monitor to assess the state of the database or its components. Health checks are invoked reactively when an error occurs. You can also invoke checks manually.

A failure is a persistent data corruption detected by a health check. Failures are usually detected reactively. A database operation involving corrupted data results in an error, which automatically invokes a health check in the database. The check searches the database for failures related to the error. If failures are diagnosed, then they are recorded in the Automatic Diagnostic Repository (ADR).

You can use Data Recovery Advisor to generate repair advice and repair failures only after failures have been detected by the database and stored in ADR. Data Recovery Advisor can report on and repair failures such as inaccessible files, physical and logical block corruptions, and I/O failures. Every failure has a failure priority: CRITICAL, HIGH, or LOW. Every failure also has a failure status of OPEN or CLOSED.

You can also use Data Recovery Advisor to view repair options. A repair is an action that fixes one or more failures. Examples of repairs include block media recovery, data file media recovery, and Oracle Flashback Database. Typically, Data Recovery Advisor presents both automated and manual repair options. If appropriate, you can choose an automated repair option in order to perform a repair. In this case, Data Recovery Advisor verifies the repair success, and closes the relevant repaired failures.

Using Data Recovery Advisor

The recovery process begins when you either suspect or discover a failure. You can discover failures in many ways, including error messages, alerts, trace files, and health checks. You can then use Data Recovery Advisor to gain information and advice about failures and repair them automatically.

This section describes a scenario in which you use Data Recovery Advisor to repair a corrupted block. Assume that the Health Meter on the Database Home page indicates that an incident has occurred. The Alerts section of the page indicates that a block corruption has occurred.

To use the Oracle advised recovery strategy:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. Click Perform Recovery in the Manage section.

    The Perform Recovery page appears. The Perform Recovery page is divided into two sections: Oracle Advised Recovery and User-Directed Recovery. The Oracle Advised Recovery section uses Data Recovery Advisor to automate recovery.

    Description of perform_reco_11gr1.gif follows
    Description of the illustration perform_reco_11gr1.gif

  3. Look for failures in the Oracle Advised Recovery section.

    In the screenshot shown in Step 2, the section indicates that one failure with high priority exists. The failure indicates that 1 or more data files are offline.

  4. Do one of the following:

    • Click Advise and Recover.

    • Click the number next to the failure status.

    The View and Manage Failures page appears.

  5. In the Priority drop-down list, select All and then click Go.

    This action enables you to view all failures known to Data Recovery Advisor. The data failures are represented as a navigation tree at the bottom of the page.

  6. Perform the following actions:

    1. Select Data Failures from the navigation tree to expand it (if it is not expanded).

    2. Select the failure to expand it.

    3. Click Advise.

    The Recovery Advice page appears.

    This page shows the RMAN script that is used to repair the failure. For example, for a corrupted block, the script might look similar to the following:

    # block media recovery
    recover data file 1 block 63467;
    
  7. Click Continue.

    The Review page appears. This page summarizes the recovery job.

    Description of review_repair_11gr1.gif follows
    Description of the illustration review_repair_11gr1.gif

  8. Click Submit Recovery Job.

    The Job Activity page appears.

    A table describes details of the repair such as the job name, the job status, the time that the repair is scheduled to be performed, the owner of the job, and so on.

  9. Click the name of the repair job and click View Results.

    The Job Run page appears.

    You can click the job step in the navigation tree to view the results of the job.

Performing User-Directed Recovery

Oracle Enterprise Manager Database Control (Database Control) User-Directed Recovery provides a Recovery wizard that enables you to use flashback features and perform restore operations and recovery procedures. For example, you can do the following:

Database Control can determine which parts of the database must be restored and recovered, including detecting situations such as corrupted database files before they affect database operations. Database Control guides you through the recovery, prompting you for any required information and performing the specified recovery actions.

This section contains a few typical recovery examples so that you can become familiar with the Perform Recovery page. You can use the Perform Recovery page to access other whole database or object-level recovery features of Database Control.

Rewinding a Table Using Oracle Flashback Table

Oracle Flashback Table enables you to rewind one or more tables back to their contents at a previous time without affecting other database objects. Thus, you can recover from logical data corruptions such as table rows added or deleted accidentally. Unlike point-in-time recovery, the database remains available during the flashback operation.

For this example, you use Flashback Table on the employees table in the hr schema. Assume that an erroneous update shortly after October 23, 2005 at 15:30:00 has changed the lastname column for all employees to an empty string, and you must return the original lastname values to the table.

Enabling Row Movement on a Table

Before you can use Flashback Table, you must ensure that row movement is enabled on the table to be flashed back, or returned to a previous state. Row movement indicates that rowids will change after the flashback occurs. This restriction exists because if rowids before the flashback were stored by an application, then there is no guarantee that the rowids will correspond to the same rows after the flashback.

To enable row movement on a table:

  1. On the Database Home page, click Schema to display the Schema subpage.

  2. Click Tables in the Database Objects section.

    The Tables page appears.

  3. To find the target table for Flashback Table, do the following:

    1. Enter the schema name in the Schema field and, optionally, the table name in the Object Name field.

    2. Click Go to search for the table.

      When you search for tables, for example, in the hr schema, you may have to page through the search results to find your table.

  4. Select the table from the list of tables and click Edit.

    In this scenario, select employees.

    The Edit Table: table_name page appears.

  5. Click Options to go to the Options subpage.

  6. Complete the following steps:

    1. Set Enable Row Movement to Yes.

    2. Click Apply to update the options for the table.

    An update message appears.

  7. Complete the following steps:

    1. Click Tables at the top of the page to return to the search results.

    2. Enable row movement on more tables by repeating Step 1 through Step 6 for each table.

    For this example, you should also enable row movement on the tables hr.jobs and hr.departments.

Performing a Flashback Table Operation

In this example, you rewind the hr.employees table and its dependent tables to a previous point in time.

To perform the Flashback Table operation:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. Select Perform Recovery from the Manage section.

    The Perform Recovery page appears.

  3. In the User Directed Recovery section, select Tables from the Recovery Scope list.

    The page reloads with options appropriate for object-level recovery of tables.

  4. For Operation Type, choose Flashback Existing Tables, and click Recover.

    The Perform Object Level Recovery: Point-in-time page appears.

  5. Choose the target time for the Flashback Table operation, and click Next.

    Note:

    If you do not know the time at which the unwanted changes occurred, then you can investigate the history of transactions affecting this table by selecting Evaluate row changes and transactions to decide upon a point in time. Oracle Flashback Version Query enables you to review all recent changes to the target table. Use of this feature is beyond the scope of this documentation.

    For this example, assume that rows were accidentally inserted 5 minutes ago. Select Flashback to a timestamp and enter a time 5 minutes before now.

    The Perform Object Level Recovery: Flashback Tables page appears.

  6. Enter table names in the Tables to Flashback text box and then click Next.

    You can enter multiple table names to flash back several tables to the same time. You can also click Add Tables and search for more tables. For this example, enter the text hr.employees in the Tables to Flashback text box.

    If your table has other dependent tables, then the Dependency Options page appears. This page asks how dependencies should be handled.

  7. Do one of the following, and then click Next:

    • Select Cascade to flash back any dependent tables.

    • Select Restrict to flash back only the target table.

    • Select Customize to choose which dependent tables to flash back and which to leave as they are.

    You can click Show Dependencies to see which tables will be affected.

    Note:

    Row movement must be enabled on all affected tables, not just the initial target tables.

    In this example, the hr.employees table has dependent tables hr.jobs and hr.departments, so select Cascade and then click Next.

    The Perform Object Level Recovery: Review page appears.

  8. Click Submit.

    When the operation is completed, a Confirmation page displays the results. Click OK.

Recovering a Dropped Table Using Oracle Flashback Drop

Oracle Flashback Drop enables you to reverse the effects of dropping (deleting) a table, returning the dropped table to the database along with dependent objects such as indexes and triggers. This feature stores dropped objects in a recycle bin, from which they can be retrieved until the recycle bin is purged, either explicitly or because space is needed.

As with Flashback Table, you can use Flashback Drop while the database is open. Also, you can perform the flashback without undoing changes in objects not affected by the Flashback Drop operation. Flashback Table is more convenient than forms of media recovery that require taking the database offline and restoring files from backup.

Note:

For a table to be recoverable using Flashback Drop, it must reside in a locally managed tablespace. Also, you cannot recover tables in the SYSTEM tablespaces with Flashback Drop, regardless of the tablespace type.

Dropping a Table

For the purpose of learning about Flashback Drop, you will create a new table named reg_hist and then drop it. The database places the table in the recycle bin so that it can be retrieved with the Flashback Drop feature.

To create and then drop a table:

  1. On the Database Home page, click Schema to display the Schema subpage.

  2. Click Tables.

    The Tables page appears.

  3. Enter hr in the Schema field and regions in the Object Name field. Click Go.

    The schema and table are listed in the table at the bottom of the page.

  4. In the Actions list, select Create Like and click Go.

    The General subpage of the Create Table page appears.

  5. Complete the following steps:

    1. In the Name field, enter reg_hist.

    2. Deselect Not Null for the REGION_ID column.

    3. Click Constraints to open the Constraints subpage.

      The Constraints subpage appears.

    4. Select each constraint and click Delete.

    5. Click OK to create the table.

      A confirmation message appears.

  6. In the Object Name field, enter reg_hist and click Go.

    The Tables page displays information about this table.

  7. Click Delete with Options to delete the table.

    The Delete With Options page appears.

  8. Select Delete the table definition, all its data, and dependent objects (DROP), and then click Yes.

    A message confirms that the table was deleted.

Retrieving a Dropped Table

This section assumes that you created and then dropped the reg_hist table, as described in "Dropping a Table". The following procedure retrieves reg_hist from the recycle bin.

To perform the Flashback Drop operation:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. Click Perform Recovery in the Backup/Recovery section.

    The Perform Recovery page appears.

  3. In the User-Directed Recovery section, select Tables from the Recovery Scope list.

    The page reloads with options appropriate for object-level recovery of tables.

  4. Select Flashback Dropped Tables for the Operation Type, and then click Recover.

    The Perform Object Level Recovery: Dropped Objects Selection page appears.

  5. Search among the dropped objects in the recycle bin for the objects to retrieve.

    For this example, enter hr in the Schema Name field and reg_hist in the Table field, and click Go.

    The Results section lists the objects matching your search. If needed, click the arrow next to Recycle Bin to expand its contents by one level, showing dropped tables matching your search but not their dependent objects.

  6. Select each table to retrieve using Flashback Drop.

    For this example, select reg_hist and then click Next.

    Note:

    When a table is retrieved from the recycle bin, all the dependent objects for the table that are in the recycle bin are retrieved with it. They cannot be retrieved separately.

    The Perform Object Level Recovery: Rename page appears.

  7. If needed, enter new names for dropped objects that you are retrieving. For this scenario, do not specify a new name. Click Next.

    The primary reason for renaming objects when you retrieve them from the recycle bin is because you might have created new tables with the same names as tables being retrieved. If you must rename some objects, then enter new names as needed in the New Name field.

    The Perform Object Level Recovery: Review page appears. This page displays an impact analysis, showing the full set of objects to be flashed back, including the dependent objects, and the names they will have when the Flashback Drop operation is complete.

  8. Review the changes and then click Submit.

    A confirmation page should indicate the success of the operation.

  9. Click OK to return to the Availability page.

Rewinding a Database Using Oracle Flashback Database

Unlike the other flashback features, Oracle Flashback Database operates at a physical level. When you use Flashback Database, your current data files revert to their contents at a previous time. The result is similar to database point-in-time recovery, but Flashback Database can be much faster because it does not require you to restore and recover data files. Also, Flashback Database requires limited application of redo data as compared to media recovery.

Flashback Database uses flashback logs to access previous versions of data blocks and also uses some data in the archived redo log files. To have the option of using Flashback Database to repair your database, you must have configured the database to generate flashback logs as explained in "Configuring Recovery Settings".

To perform a Flashback Database operation:

  1. On the Database Home page, click Availability to display the Availability subpage.

  2. Click Perform Recovery.

    The Perform Recovery page appears.

  3. Complete the following steps:

    1. In the User-Directed Recovery section, select Whole Database.

    2. Select Recover to the current time or a previous point-in-time.

    3. If necessary, provide the host computer credentials.

    4. Click Recover.

    A Confirmation page appears.

  4. Click Yes to confirm the shutdown of the database.

    The Recovery Wizard page appears. At this point, the shutdown begins.

    When the database is shut down and brought to the mounted state, Database Control is also shut down briefly and restarted. During this process, there is a period during which Database Control cannot respond to your browser. Refresh the page until Database Control responds again.

    When Database Control has restarted and the database is being started and mounted, Database Control may also briefly report that the database is in the NOMOUNT state. You are given the choices Refresh, Startup, and Perform Recovery. Refresh the page periodically until the Database Instance page reports that the database instance is mounted before you proceed.

  5. Click Perform Recovery to resume your recovery session.

  6. If you are prompted for host computer and database credentials, then connect with the SYSDBA privilege, or provide host computer credentials for a user in the DBA group.

    See "Specifying Credentials for Backup and Recovery Using Database Control" for information about credentials.

    When the Perform Recovery page is displayed again, it shows that the database is mounted, which is required to restore and recover the entire database.

  7. Complete the following steps:

    1. In the User-Directed Recovery section, select Whole Database.

    2. Select Recover to the current time or a previous point-in-time.

    3. If necessary, provide the host credentials.

    4. Click Recover.

    A Confirmation page appears.

  8. Complete the following steps:

    1. Select Recover to a prior point-in-time.

    2. In the Date field, select a time 5 minutes before now.

    3. Click Next.

    The Perform Whole Database Recovery: Flashback page appears.

  9. Select Yes to use Flashback Database and then click Next.

    The Perform Whole Database Recovery: Review page appears.

  10. Review the options that you selected and click Submit.

    When the flashback operation completes, the Perform Recovery: Result page appears.

  11. Click Open Database.

    After the database has opened successfully, click OK.

Restoring and Recovering the Database

This section demonstrates how to restore and recover the entire database. This example assumes that you are restoring and recovering your database after the loss of one or more data files, but you still have a usable server parameter file and control file. You can also use Database Control to restore a lost server parameter file or control file.

To restore and recover the entire database:

  1. Perform Step 1 through Step 7 from the procedure in "Rewinding a Database Using Oracle Flashback Database".

  2. Do one of the following:

    • Select Recover to the current time to recover all transactions to your database up until now.

    • Select Recover to a prior point-in-time to recover transactions only up through some point in time in the past.

    For this example, select Recover to the current time, and then click Next.

    The Perform Whole Database Recovery: Rename page appears.

  3. Select No to restore the files to their default locations, and then click Next.

    The Perform Whole Database Recovery: Review page appears.

  4. Click Submit to start the restoration and recovery of the database.

    Note:

    In some repair scenarios, such as a complete restoration and recovery of your database, the database state is altered by steps you take while using the wizard. Database Control displays warnings each time a significant database change results from selecting Continue during the recovery process. Pay close attention to these warnings.

    When the recovery completes, the Perform Recovery: Result page appears.

  5. Click Open Database and then OK.

See Also:

Backup and Recovery: Oracle By Example Series

Oracle By Example (OBE) has a series on the Oracle Database 2 Day DBA guide. This OBE steps you through the tasks in this section, and includes annotated screenshots. To view the Backup and Recovery OBE, in your browser, enter the following URL:

http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/11g/r2/2day_dba/backup/backup.htm