Entering content frameProcedure documentation Recovery: User Tablespace Missing Locate the document in its SAP Library structure

One or more data files are missing from a tablespace.

A user tablespace does not contain data from the Data Dictionary, active rollback segments, or temporary segments.

Oracle issues error messages when a user attempts to access the involved tablespace. Error information is also written to the database ALERT and trace files.

Caution

If only one user tablespace is lost, you can perform a tablespace recovery without shutting down the database. Please note, however, that user tablespaces are used intensively in the SAP System, and this procedure is therefore only recommended for experienced database administrators. The loss of a user tablespace often has similar consequences for the SAP system as the loss of the SYSTEM tablespace, because the effects of the loss of this one tablespace are very complex.

A full recovery of the database is possible if you have a backup copy of the corresponding tablespaces and of all redo log files written since the backup.

Recovery Procedure

If you use an SAP database, you should shut down the SAP System before starting the recovery procedure. Tables are used so intensively in the SAP System that it is generally impossible to set the affected tablespace to OFFLINE without terminating the activities of many users.

The information below describes the recovery procedure when the database is closed. For information on recovery options with an open database, see the Oracle documentation.

Proceed as follows during recovery:

  1. Shut down the database system, if it is active, with the following SQLPLUS command:
  2. shutdown abort

    You have to shut down the database with ABORT because the missing files cannot be closed.

  3. Inspect the ALERT and trace files to determine the cause of the problem.
  4. The problem is often that an entire disk has crashed, and you will have to recover more than one tablespace.

  5. Use the log files from the SAP utilities BRBACKUP and BRARCHIVE to find the volume(s) that contain the following files:
  6. – Last backup of the lost tablespace(s)

    – Offline redo log files of all instances archived since the last backup

    It is important to identify the location of the lost files. This information appears at the start of the detail log from the backup you are using.

  7. Restore only the damaged or lost files. You can minimize the time required for recovery by only restoring the missing or damaged files.
  8. You also have to restore the archived redo logs of all instances that are required for the recovery.

    To do this, use the SAP utility BRRESTORE (see Command Options for BRRESTORE).

  9. Mount the database. Enter the following SQLPLUS commands:
  10. connect internal

    startup mount

  11. If you could not restore backed up files into their original directories or had to change file name, you have to update the control file.
  12. Use the following command to change a path:

    alter database rename file '<file name>' to '<file name>';

    See Updating the Control File.

  13. If the data files of the database were set to status OFFLINE when the error occurred, change the status of the files in the control file to ONLINE.
  14. To find the relevant files, search for "offline" in the ALERT file.

    To change the status of a data file in the control file, use the following SQLPLUS command:

    alter database datafile '<file name>' online;

    See Updating the Control File.

  15. Use the following SQLPLUS command to start the recovery:
  16. recover database;

    When prompted to do so, enter the paths of the offline redo log files required for updating the backup.

    The system processes online redo logs automatically.

    The alternatives: recover tablespace and recover datafile were not discussed here, since SAP recommends shutting down the database when an error occurs. The recover database command only performs the actions necessary to recover the database, and therefore does not take much longer than the recover tablespace and recover datafile commands.

    For information on recover tablespace and recover datafile, please refer to the Oracle documentation.

  17. When the message recovery complete is displayed, use the following SQLPLUS command to start up the database system:

alter database open;

For more detailed information, please refer to the Oracle documentation.

Note

Please note: in most cases, SAPDBA can be used to correct media errors affecting the data files of a user tablespace. Therefore, we recommend using the SAPDBA recovery functions (see SAPDBA Database Recovery).

Leaving content frame