Oracle8i Backup and Recovery Guide
Release 2 (8.1.6)

Part Number A76993-01

Library

Product

Contents

Index

Go to previous page Go to next page

6
Media Recovery Scenarios

This chapter describes how to recover from common media failures, and includes the following topics:

Understanding the Types of Media Failures

Media failures fall into two general categories: permanent and temporary. Use different recovery strategies depending on the type of failure.

Permanent media failures are serious hardware problems that cause permanent loss of data on the disk. Lost data cannot be recovered except by repairing or replacing the failed storage device and restoring backups of the files stored on the damaged storage device.

Temporary media failures are hardware problems that make data temporarily inaccessible, but do not corrupt the data. Following are two examples of temporary media failures:

Recovering After the Loss of Datafiles

If a media failure affects datafiles, the appropriate recovery procedure depends on:

The following sections explain the appropriate recovery strategies for the database mode:

Losing Datafiles in NOARCHIVELOG Mode

If either a permanent or temporary media failure affects any datafiles of a database operating in NOARCHIVELOG mode, then Oracle automatically shuts down the database. Depending on the type of media failure, you can use one of the following recovery methods:

If the media failure is...  Then... 

Temporary 

Correct the hardware problem and restart the database. Usually, instance recovery is possible, and all committed transactions can be recovered using the online redo log. 

Permanent 

Follow the procedure "Recovering a Database in NOARCHIVELOG Mode"

Losing Datafiles in ARCHIVELOG Mode

If either a permanent or temporary media failure affects the datafiles of a database operating in ARCHIVELOG mode, then the following scenarios can occur.

Damaged Datafiles  Database Status  Solution 

Datafiles in the SYSTEM tablespace or datafiles with active rollback segments. 

Oracle shuts down. 

If the hardware problem is temporary, then fix it and restart the database. Usually, instance recovery recovers lost transactions.

If the hardware problem is permanent, follow the procedure in "Performing Closed Database Recovery"

Non-SYSTEM datafiles or datafiles that do not contain active rollback segments. 

Oracle takes affected datafiles offline, but the database stays open. 

If the unaffected portions of the database must remain available, then do not shut down the database. Take tablespaces containing problem datafiles offline using the temporary option, then follow the procedure in "Performing Open Database Recovery"

Recovering Through an ADD DATAFILE Operation

If database recovery rolls forward through an ADD DATAFILE operation, then Oracle stops recovery when applying the ADD DATAFILE redo record and lets you confirm the location of the added file.

For example, suppose you create a new tablespace containing two datafiles: /db/db2.f and /db/db3.f. If you later perform media recovery through the CREATE TABLESPACE operation, Oracle may signal the following error when applying the CREATE TABLESPACE redo data:

ORA-00283: recovery session canceled due to errors 
ORA-01244: unnamed datafile(s) added to controlfile by media recovery
ORA-01110: data file 3: '/db/db2.f'
ORA-01110: data file 2: '/db/db3.f'
To recover through an ADD DATAFILE operation:

  1. View the files added by selecting from V$DATAFILE:

    SELECT file#, name FROM v$datafile;
    
    FILE#          NAME
    -------------------------------------
    1              /db/db1.f
    2              /db/UNNAMED00002
    3              /db/UNNAMED00003
    
    
    
  2. If multiple unnamed files exist, determine which unnamed file corresponds to which datafile using one of these methods:

    • Open the alert.log, which contains messages about the original file location for each unnamed file.

    • Derive the original file location of each unnamed file from the error message and V$DATAFILE: each unnamed file corresponds to the file in the error message with the same file number.

  3. Issue the ALTER DATABASE RENAME FILE statement to rename the datafiles. For example, enter:

    ALTER DATABASE RENAME FILE '/db/UNNAMED00002' TO '/db/db3.f';
    ALTER DATABASE RENAME FILE '/db/UNNAMED00003' TO '/db/db2.f';
    
    
    
  4. Continue recovery by issuing the previous recovery statement. For example, enter:

    RECOVER DATABASE
    

Recovering Transported Tablespaces

The transportable tablespace feature of Oracle allows a user to transport a set of tablespaces from one database to another. Transporting a tablespace into a database is like creating a tablespace with pre-loaded data. Using this feature is often an advantage because:

Like normal tablespaces, transportable tablespaces are recoverable. While you can recover normal tablespaces without a backup, you must have a version of the transported datafiles in order to recover a plugged-in tablespace.

To recover a transportable tablespace, restore a backup of the transported datafiles and issue normal recovery commands. The backup can be the initial version of the transported datafiles or any backup taken after the tablespace is transported. Just as when recovering through a CREATE TABLESPACE operation, Oracle may signal ORA-01244 when recovering through a transportable tablespace operation. In this case, rename the unnamed files to the correct locations using the procedure in "Recovering Through an ADD DATAFILE Operation".

See Also:

Oracle8i Administrator's Guide for detailed information about using the transportable tablespace feature. 

Recovering After the Loss of Online Redo Log Files

If a media failure has affected the online redo logs of a database, then the appropriate recovery procedure depends on:

The following sections describe the appropriate recovery strategies for these situations:

Recovering After Losing a Member of a Multiplexed Online Redo Log Group

If the online redo log of a database is multiplexed, and at least one member of each online redo log group is not affected by the media failure, Oracle allows the database to continue functioning as normal. Oracle writes error messages to the LGWR trace file and the alert.log of the database.

Solve the problem by taking one of the following actions:

To replace a damaged member of a redo log group:

  1. Locate the filename of the damaged member in V$LOGFILE. The status is INVALID if the file is inaccessible:

    SELECT group#, status, member FROM v$logfile;
    
    GROUP#    STATUS       MEMBER
    -------   -----------  ---------------------
    0001                    /oracle/dbs/log1a.f
    0001                    /oracle/dbs/log1b.f
    0002                    /oracle/dbs/log2a.f
    0002      INVALID       /oracle/dbs/log2b.f
    0003                    /oracle/dbs/log3a.f
    0003                    /oracle/dbs/log3b.f
    
    
    
  2. Drop the damaged member. For example, to drop member log2b.f from group 2, issue:

    ALTER DATABASE DROP LOGFILE MEMBER '/oracle/dbs/log2b.f';
    
    
    
  3. Add a new member to the group. For example, to add log2c.f to group 2, issue:

    ALTER DATABASE ADD LOGFILE MEMBER '/oracle/dbs/log2c.f' TO GROUP 2;
    
    
    

    If the file you want to add already exists, then it must be the same size as the other group members, and you must specify REUSE:

    ALTER DATABASE ADD LOGFILE MEMBER '/oracle/dbs/log2b.f' REUSE TO GROUP 2;
    

Recovering After the Loss of All Members of an Online Redo Log Group

If a media failure damages all members of an online redo log group, different scenarios can occur, depending on the type of online redo log group affected by the failure and the archiving mode of the database.

If the damaged log group is inactive, then it is not needed for instance recovery; if it is active, then it is needed for instance recovery.

If the group is...  Then...  And you should... 

Inactive 

It is not needed for instance recovery 

Clear the archived or unarchived group. 

Active 

It is needed for instance recovery 

Attempt to issue a checkpoint and clear the log; if impossible, then you must restore a backup and perform incomplete recovery up to the most recent available log. 

Current 

It is the log that Oracle is currently writing to 

Attempt to clear the log; if impossible, then you must restore a backup and perform incomplete recovery up to the most recent available log. 

Your first task is to determine whether the damaged group is active or inactive.

To determine whether the damaged groups are active:

  1. Locate the filename of the lost redo log in V$LOGFILE and then look for the group number corresponding to it. For example, enter:

    SELECT group#, status, member FROM v$logfile;
    
    GROUP#    STATUS       MEMBER
    -------   -----------  ---------------------
    0001                    /oracle/dbs/log1a.f
    0001                    /oracle/dbs/log1b.f
    0002      INVALID       /oracle/dbs/log2a.f
    0002      INVALID       /oracle/dbs/log2b.f
    0003                    /oracle/dbs/log3a.f
    0003                    /oracle/dbs/log3b.f
    
    
    
  2. Determine which groups are active. For example, enter:

    SELECT group#, members, status, archived FROM v$log;
    
    GROUP#  MEMBERS           STATUS     ARCHIVED
    ------  -------           ---------  -----------
     0001   2                 INACTIVE   YES
     0002   2                 ACTIVE     NO
     0003   2                 CURRENT    NO
    
    
    
  3. If the affected group is inactive, follow the procedure in "Losing an Inactive Online Redo Log Group". If the affected group is active as in the above example, then follow the procedure in "Losing an Active Online Redo Log Group".

Losing an Inactive Online Redo Log Group

If all members of an online redo log group with INACTIVE status are damaged, then the procedure depends on whether you can fix the media problem that damaged the inactive redo log group.

Type of Media Failure  Procedure 

Temporary 

Fix the problem. LGWR can reuse the redo log group when required. 

Permanent 

The damaged inactive online redo log group eventually halts normal database operation. Reinitialize the damaged group manually using ALTER DATABASE CLEAR LOGFILE as described below. 

You can clear an active redo log group when the database is open or closed. The procedure depends on whether the damaged group has been archived.

To clear an inactive, online redo log group that has been archived:

  1. If the database is shut down, start a new instance and mount the database, but do not open it:

    STARTUP MOUNT
    
    
    
  2. Reinitialize the damaged log group. For example, to clear redo log group 2, issue:

    ALTER DATABASE CLEAR LOGFILE GROUP 2;
    
To clear an inactive, online redo log group that has not been archived:

Clearing an unarchived log allows it to be reused without archiving it. This action makes backups unusable if they were started before the last change in the log, unless the file was taken offline prior to the first change in the log. Hence, if you need the cleared log file for recovery of a backup, you cannot recover that backup.

  1. If the database is shut down, then start a new instance and mount the database, but do not open it:

    STARTUP MOUNT
    
    
    
  2. Clear the log using the UNARCHIVED keyword. For example, to clear log group 2, issue:

    ALTER DATABASE CLEAR LOGFILE UNARCHIVED GROUP 2;
    
    
    

    If there is an offline datafile that requires the cleared unarchived log to bring it online, then the keywords UNRECOVERABLE DATAFILE are required. The datafile and its entire tablespace have to be dropped because the redo necessary to bring it online is being cleared, and there is no copy of it. For example, enter:

    ALTER DATABASE CLEAR LOGFILE UNARCHIVED GROUP 2 UNRECOVERABLE DATAFILE;
    
    
    
  3. Immediately back up the database using an operating system utility. Now you can use this backup for complete recovery without relying on the cleared log group. For example, enter:

    % cp /disk1/oracle/dbs/*.f /disk2/backup
    
    
  4. Back up the database's control file using the ALTER DATABASE statement. For example, enter:

    ALTER DATABASE BACKUP CONTROLFILE TO '/oracle/dbs/cf_backup.f';
    
Failure of CLEAR LOGFILE Operation

The ALTER DATABASE CLEAR LOGFILE statement can fail with an I/O error due to media failure when it is not possible to:

In these cases, the CLEAR LOGFILE statement (before receiving the I/O error) would have successfully informed the control file that the log was being cleared and did not require archiving. The I/O error occurred at the step in which CLEAR LOGFILE attempts to create the new redo log file and write zeros to it.

Losing an Active Online Redo Log Group

If the database is still running and the lost active log is not the current log, then issue the ALTER SYSTEM CHECKPOINT statement. If successful, your active log is rendered inactive, and you can follow the procedure in "Losing an Inactive Online Redo Log Group". If unsuccessful, or if your database has halted, perform one of these procedures, depending on the archiving mode.

Note that the current log is the one LGWR is currently writing to. If a LGWR I/O fails, then LGWR terminates and the instance crashes. In this case, you must restore a backup, perform incomplete recovery, and open the database with the RESETLOGS option.

To recover from loss of an active online redo log group in NOARCHIVELOG mode:

  1. If the media failure is temporary, correct the problem so that Oracle can reuse the group when required.

  2. Restore the database from a whole database backup using an operating system utility. For example, enter:

    % cp /disk2/backup/*.f /disk1/oracle/dbs
    
    
  3. Mount the database:

    STARTUP MOUNT
    
    
  4. Open the database using the RESETLOGS option:

    ALTER DATABASE OPEN RESETLOGS;
    
    
    
  5. Shut down the database normally:

    SHUTDOWN IMMEDIATE
    
    
  6. Make a whole database backup. For example, enter:

    % cp /disk1/oracle/dbs/*.f /disk2/backup
    
To recover from loss of an active online redo log group in ARCHIVELOG mode:

  1. If the media failure is temporary, then correct the problem so that Oracle can reuse the group when required.

  2. Perform incomplete media recovery. Use the procedure given in "Performing Incomplete Media Recovery", recovering up through the log before the damaged log.

  3. Ensure that the current name of the lost redo log can be used for a newly created file. If not, rename the members of the damaged online redo log group to a new location. For example, enter:

    ALTER DATABASE RENAME FILE "/oracle/dbs/log_1.rdo" TO "/temp/log_1.rdo";
    ALTER DATABASE RENAME FILE "/oracle/dbs/log_2.rdo" TO "/temp/log_2.rdo";
    
    
  4. Open the database using the RESETLOGS option:

    ALTER DATABASE OPEN RESETLOGS;
    


    Note:

    All updates executed from the endpoint of the incomplete recovery to the present must be re-executed. 


Loss of Multiple Redo Log Groups

If you have lost multiple groups of the online redo log, then use the recovery method for the most difficult log to recover. The order of difficulty, from most difficult to least, follows:

  1. The current online redo log

  2. An active online redo log

  3. An unarchived redo log

  4. An inactive online redo log

Recovering After the Loss of Archived Redo Log Files

If the database is operating in ARCHIVELOG mode, and the only copy of an archived redo log file is damaged, then the damaged file does not affect the present operation of the database. The following situations can arise, however, depending on when the redo log was written and when you backed up the datafile.

If you backed up...  Then... 

All datafiles after the filled online redo log group (which is now archived) was written 

The archived version of the filled online redo log group is not required for complete media recovery operation. 

A given datafile before the filled online redo log group was written 

If the corresponding datafile is damaged by a permanent media failure, use the most recent backup of the damaged datafile and perform incomplete recovery up to the damaged log. 


WARNING:

If you know that an archived redo log group has been damaged, immediately back up all datafiles so that you will have a whole database backup that does not require the damaged archived redo log. 


Recovering After the Loss of Control Files

If a media failure has affected the control files of a database (whether control files are multiplexed or not), the database continues to run until the first time that an Oracle background process needs to access the control files. At this point, the database and instance are automatically shut down.

If the media failure is temporary and the database has not yet shut down, avoid the automatic shutdown of the database by immediately correcting the media failure. If the database shuts down before you correct the temporary media failure, however, then you can restart the database after fixing the problem and restoring access to the control files.

The appropriate recovery procedure for media failures that permanently prevent access to control files of a database depends on whether you have multiplexed the control files. The following sections describe the appropriate procedures:

Losing a Member of a Multiplexed Control File

Use the following procedures to recover a database if all the following conditions are met:

To restore a control file to its default location:

  1. If the instance is still running, abort it:

    SHUTDOWN ABORT
    
    
    
  2. Correct the hardware problem that caused the media failure. If you cannot repair the hardware problem quickly, you can proceed with database recovery by restoring damaged control files to an alternative storage device.

  3. Use an intact multiplexed copy of the database's current control file to copy over the damaged control files. For example, to replace bad_cf.f with good_cf.f, you might enter:

    % cp /oracle/good_cf.f /oracle/dbs/bad_cf.f
    
    
    
  4. Start an instance and open the database:

    STARTUP
    
To restore a control file to its non-default location:

  1. If the instance is still running, abort it:

    SHUTDOWN ABORT
    
    
    
  2. If you cannot correct the hardware problem that caused the media failure, copy the intact control file to alternative locations. For example, to rename good_cf.f as new_cf.f you might issue:

    % cp /oracle/dbs/good_cf.f /oracle/dbs/new_cf.f
    
    
    
  3. Edit the parameter file of the database so that the CONTROL_FILES parameter reflects the current locations of all control files and excludes all control files that were not restored. For example, to add new_cf.f you might enter:

    CONTROL_FILES = '/oracle/dbs/good_cf.f', '/oracle/dbs/new_cf.f'
    
    
    
  4. Start a new instance and open the database:

    STARTUP
    

Losing All Copies of the Current Control File

If all control files of a database have been lost or damaged by a permanent media failure, but all online redo logfiles remain intact, then you can recover the database by creating a new control file.

Depending on the existence and currency of a control file backup, you have the following options for generating the text of the CREATE CONTROLFILE statement

Table 6-1 Options for Creating the Control File 
If you...  Then... 

Executed ALTER DATABASE BACKUP CONTROLFILE TO TRACE NORESETLOGS after you made the last structural change to the database, and if you have saved the SQL command trace output 

Use the CREATE CONTROLFILE statement from the trace output as-is. 

Performed your most recent execution of ALTER DATABASE BACKUP CONTROLFILE TO TRACE before you made a structural change to the database 

Edit the output of ALTER DATABASE BACKUP CONTROLFILE TO TRACE to reflect that change. For example, if you recently added a datafile to the database, add that datafile to the DATAFILE clause of the CREATE CONTROLFILE statement. 

Have not backed up the control file using the TO TRACE option, but used the TO filename option of ALTER DATABASE BACKUP CONTROLFILE 

Use the control file copy to obtain SQL output. Copy the backup control file and execute STARTUP MOUNT before ALTER DATABASE BACKUP CONTROLFILE TO TRACE NORESETLOGS. If the control file copy predated a recent structural change, edit the TO TRACE output to reflect the structural change. 

Do not have a control file backup in either TO TRACE format or TO filename format 

Generate the CREATE CONTROLFILE statement manually (see Oracle8i SQL Reference). 


Note:

If your character set is not the default US7ASCII, then you must specify the character set as an argument to the CREATE CONTROLFILE statement. 


To create a new control file:

  1. Create the control file using the CREATE CONTROLFILE statement with the NORESETLOGS option (see Table 6-1 for options). For example, enter:

    CREATE CONTROLFILE REUSE DATABASE SALES NORESETLOGS ARCHIVELOG
         MAXLOGFILES 32
         MAXLOGMEMBERS 2
         MAXDATAFILES 32
         MAXINSTANCES 16
         MAXLOGHISTORY 1600
    LOGFILE
         GROUP 1
           '/diska/prod/sales/db/log1t1.dbf',
           '/diskb/prod/sales/db/log1t2.dbf'
         )  SIZE 100K
        GROUP 2 
           '/diska/prod/sales/db/log2t1.dbf',
            '/diskb/prod/sales/db/log2t2.dbf'
        ) SIZE 100K,
    DATAFILE
        '/diska/prod/sales/db/database1.dbf',
        '/diskb/prod/sales/db/filea.dbf'
    ;
    
    
  2. Recover the database as normal:

    RECOVER DATABASE
    

    See Also:

    "Backing Up the Control File to a Trace File"

Recovering from User Errors

An accidental or erroneous operational or programmatic change to the database can cause loss or corruption of data. Recovery may require a return to a state prior to the error.


Note:

If you have granted powerful privileges (such as DROP ANY TABLE) to only selected, appropriate users, user errors that require database recovery are minimized. 


To recover a table that has been accidentally dropped:

  1. If possible, keep the database that experienced the user error online and available for normal use. Back up all datafiles of the existing database in case an error is made during the remaining steps of this procedure.

  2. Restore a database backup to an alternative location, then perform incomplete recovery using a restored backup control file to the point just before the table was dropped (see "Performing Incomplete Media Recovery" for the procedure).

  3. Export the lost data from the temporary, restored version of the database using the Oracle utility Export. In this case, export the accidentally dropped table.


    Note:

    System audit options are exported. 


  4. Import the exported data into the permanent copy of the database using the Oracle Import utility.

  5. Delete the files of the temporary, reconstructed copy of the database to conserve space.

    See Also:

    Oracle8i Utilities for more information about the Import and Export utilities. 

Performing Media Recovery in a Distributed Environment

The manner in which you perform media recovery depends on whether your database participates in a distributed database system. The Oracle distributed database architecture is autonomous. Therefore, depending on the type of recovery operation selected for a single, damaged database, you may have to coordinate recovery operations globally among all databases in the distributed database system.

Table 6-2 summarizes different types of recovery operations and whether coordination among nodes of a distributed database system is required.

Table 6-2 Recovery Operations in a Distributed Database Environment
If you are...  Then... 

Restoring a whole backup for a database that was never accessed from a remote node 

Use non-coordinated, autonomous database recovery. 

Restoring a whole backup for a database that was accessed by a remote node 

Shut down all databases and restore them using the same coordinated full backup. 

Performing complete media recovery of one or more databases in a distributed database 

Use non-coordinated, autonomous database recovery. 

Performing incomplete media recovery of a database that was never accessed by a remote node 

Use non-coordinated, autonomous database recovery. 

Performing incomplete media recovery of a database that was accessed by a remote node 

Use coordinated, incomplete media recovery to the same global point in time for all databases in the distributed database. 

Coordinating Time-Based and Change-Based Distributed Database Recovery

In special circumstances, one node in a distributed database may require recovery to a past time. To preserve global data consistency, it is often necessary to recover all other nodes in the system to the same point in time. This operation is called coordinated, time-based, distributed database recovery. The following tasks should be performed with the standard procedures of time-based and change-based recovery described in this chapter.

  1. Recover the database that requires the recovery operation using time-based recovery. For example, if a database needs to be recovered because of a user error (such as an accidental table drop), recover this database first using time-based recovery. Do not recover the other databases at this point.

  2. After you have recovered the database and opened it using the RESETLOGS option, look in the alert.log of the database for the RESETLOGS message.

    If the message is, "RESETLOGS after complete recovery through change xxx", then you have applied all the changes in the database and performed a complete recovery. Do not recover any of the other databases in the distributed system, or you will unnecessarily remove changes in them. Recovery is complete.

    If the message is, "RESETLOGS after incomplete recovery UNTIL CHANGE xxx", you have successfully performed an incomplete recovery. Record the change number from the message and proceed to the next step.

  3. Recover all other databases in the distributed database system using change-based recovery, specifying the change number (SCN) from Step 2.

Recovering a Database with Snapshots

If a master database is independently recovered to a past time (that is, coordinated, time-based distributed database recovery is not performed), any dependent remote snapshot that was refreshed in the interval of lost time will be inconsistent with its master table. In this case, the administrator of the master database should instruct the remote administrators to perform a complete refresh of any inconsistent snapshot.


Go to previous page Go to next page
Oracle
Copyright © 1996-2000, Oracle Corporation.

All Rights Reserved.

Library

Product

Contents

Index