SQL*Plus User's Guide and Reference
Release 8.1.6

A75664-01

Library

Product

Contents

Index

Prev Up Next

Command Reference, 34 of 52


RECOVER

Purpose

Performs media recovery on one or more tablespaces, one or more datafiles, or the entire database.

Syntax

RECOVER {general | managed} [parallel]

where the general clause has the following syntax:

  [AUTOMATIC] [FROM location]
  {[STANDBY] DATABASE [ [UNTIL {CANCEL | CHANGE integer | TIME date}
                        | USING BACKUP CONTROLFILE]...] 
   | STANDBY {DATAFILE datafilename [, DATAFILE datafilename...]
              | TABLESPACE tablespace [, TABLESPACE tablespace ...]}
       UNTIL [CONSISTENT] [WITH] CONTROLFILE
   | TABLESPACE tablespace [, tablespace ...]
   | DATAFILE datafilename [, datafilename ...]
   | LOGFILE filename
   | CONTINUE [DEFAULT]
   | CANCEL}

and where the managed clause has the following syntax:

  MANAGED STANDBY DATABASE {TIMEOUT integer | CANCEL [IMMEDIATE]}

and where the parallel clause has the following syntax:

  PARALLEL [integer] | NOPARALLEL

Terms and Clauses

Refer to the following list for a description of each term and clause:

AUTOMATIC

      Automatically generates the name of the next archived redo log file needed to continue the recovery operation. Oracle uses the LOG_ARCHIVE_DEST (or LOG_ARCHIVE_DEST_1) and LOG_ARCHIVE_FORMAT parameters (or their defaults) to generate the target redo log filename. If the file is found, the redo contained in that file is applied. If the file is not found, SQL*Plus prompts you for a filename, displaying a generated filename as a suggestion.

      If you specify neither AUTOMATIC nor LOGFILE, SQL*Plus prompts you for a filename, displaying the generated filename as a suggestion. You can then accept the generated filename or replace it with a fully qualified filename. If you know the archived filename differs from what Oracle would generate, you can save time by using the LOGFILE clause.

FROM location

      Specifies the location from which the archived redo log file group is read. The value of location must be a fully specified file location following the conventions of your operating system. If you omit this parameter, SQL*Plus assumes the archived redo log file group is in the location specified by the initialization parameter LOG_ARCHIVE_DEST or LOG_ARCHIVE_DEST_1.

STANDBY

      Recovers the standby database using the control file and archived redo log files copied from the primary database. The standby database must be mounted but not open.

DATABASE

      Recovers the entire database.

UNTIL CANCEL

      Specifies an incomplete, cancel-based recovery. Recovery proceeds by prompting you with the suggested filenames of archived redo log files, and recovery completes when you specify CANCEL instead of a filename.

UNTIL CHANGE integer

      Specifies an incomplete, change-based recovery. integer is the number of the System Change Number (SCN) following the last change you wish to recover. For example, if you want to restore your database up to the transaction with an SCN of 9, you would specify UNTIL CHANGE 10.

UNTIL TIME date

      Specifies an incomplete, time-based recovery. Use single quotes, and the following format:

      'YYYY-MM-DD:HH24:MI:SS'
      
USING BACKUP CONTROLFILE

      Specifies that a backup of the control file be used instead of the current control file.

STANDBY {[DATAFILE datafilename [, DATAFILE datafilename ...]}

      Reconstructs a lost or damaged datafile in the standby database using archived redo log files copied from the primary database and a control file.

STANDBY {TABLESPACE tablespace [, TABLESPACE tablespace ...]}

      Reconstructs a lost or damaged tablespace in the standby database using archived redo log files copied from the primary database and a control file.

UNTIL [CONSISTENT] [WITH] CONTROLFILE

      Specifies that the recovery of an old standby datafile or tablespace uses the current standby database control file.

TABLESPACE tablespace

      Recovers a particular tablespace. tablespace is the name of a tablespace in the current database. You may recover up to 16 tablespaces in one statement.

DATAFILE datafilename

      Recovers a particular datafile. You can specify any number of datafiles.

LOGFILE filename

      Continues media recovery by applying the specified redo log file.

CONTINUE [DEFAULT]

      Continues multi-instance recovery after it has been interrupted to disable a thread.

      Continues recovery using the redo log file that Oracle would automatically generate if no other logfile were specified. This option is equivalent to specifying AUTOMATIC, except that Oracle does not prompt for a filename.

CANCEL

      Terminates cancel-based recovery.

MANAGED STANDBY DATABASE

      Specifies sustained standby recovery mode. This mode assumes that the standby database is an active component of an overall standby database architecture. A primary database actively archives its redo log files to the standby site. As these archived redo logs arrive at the standby site, they become available for use by a managed standby recovery operation. Sustained standby recovery is restricted to media recovery.

      For more information on the parameters of this clause, see the Oracle8i Backup and Recovery Guide.

TIMEOUT integer

CANCEL [IMMEDIATE]

PARALLEL [integer]

NOPARALLEL

      Specifies serial execution. This is the default.

Usage Notes

You must be connected to Oracle as SYSOPER, or SYSDBA.

You cannot use the RECOVER command when connected via the multi-threaded server.

To perform media recovery on an entire database (all tablespaces), the database must be mounted EXCLUSIVE and closed.

To perform media recovery on a tablespace, the database must be mounted and open, and the tablespace must be offline.

To perform media recovery on a datafile, the database can remain open and mounted with the damaged datafiles offline (unless the file is part of the SYSTEM tablespace).

Before using the RECOVER command you must have restored copies of the damaged datafile(s) from a previous backup. Be sure you can access all archived and online redo log files dating back to when that backup was made.

When another log file is required during recovery, a prompt suggests the names of files that are needed. The name is derived from the values specified in the initialization parameters LOG_ARCHIVE_DEST and LOG_ARCHIVE_FORMAT. You should restore copies of the archived redo log files needed for recovery to the destination specified in LOG_ARCHIVE_DEST, if necessary. You can override the initialization parameters by setting the LOGSOURCE variable with the SET LOGSOURCE command.

During recovery you can accept the suggested log name by pressing return, cancel recovery by entering CANCEL instead of a log name, or enter AUTO at the prompt for automatic file selection without further prompting.

If you have enabled autorecovery (that is, SET AUTORECOVERY ON), recovery proceeds without prompting you with filenames. Status messages are displayed when each log file is applied.

When normal media recovery is done, a completion status is returned.

For more information on recovery and the RECOVER command, see the Oracle8i Administrator's Guide, and the Oracle8i Backup and Recovery guide.

Examples

To recover the entire database, enter

SQL> RECOVER DATABASE 

To recover the database until a specified time, enter

SQL> RECOVER DATABASE UNTIL TIME 23-NOV-99:04:32:00 

To recover the two tablespaces ts_one and ts_two from the database, enter

SQL> RECOVER TABLESPACE ts_one, ts_two 

To recover the datafile data1.db from the database, enter

SQL> RECOVER DATAFILE 'data1.db' 

Prev Up Next
Oracle
Copyright © 1999 Oracle Corporation.

All Rights Reserved.

Library

Product

Contents

Index