Show TOC

Procedure documentationSetting Up Archiving Locate this document in the navigation structure

 

This procedure tells you how to check the archiving parameters and ARCHIVELOG mode for your Oracle database and, if necessary, how to change these.

Caution Caution

It is important that:

  • The database runs in ARCHIVELOG mode

  • Automatic archiving is enabled

End of the caution.

After correct installation of an SAP system, the Oracle database meets both these criteria. In this case, the online redo log files are automatically archived when full (that is, following a redo log switch). This is important because it allows the online redo log files to be reused for fresh archive data, so that archiving of the log files can continue at all times.

Prerequisites

The following parameters in the init<DBSID>.ora file control the archiving process for the Oracle database:

Parameter

Note

log_archive_start = true

Standard in Oracle 10g

log_archive_dest = <directory>/<file prefix>

Part of the file name

log_archive_format = <Oracle default>

Use the Oracle default

log_archive_start = true causes the background archive process ARCH to be started automatically when the database is started. This means that automatic archiving is enabled.

log_archive_dest defines the archive directory of the online redo log files for archiving. It is delivered with the specification of the following SAP standard path (this example is for a single instance installation on UNIX):

OS> <SAPDATA_HOME>/oraarch/<ORACLE_SID>arch

See SAP Note 316642 for information on how to avoid an “archiver stuck” error by changing the archive directory from the previous value saparch to oraarch.

For more information, see Environment Variables (UNIX) and Environment Variables (Windows).

Note Note

The Oracle database names the offline redo log files using the string <ORACLE_SID>arch followed by the log sequence number.

You can back up the offline redo log files with BR*Tools. The offline redo log files are the copies of the online redo log files saved in the archive directory.

End of the note.

Procedure

  1. Make sure that:

    • The archive directory (under UNIX: oraarch) exists.

    • The directory is not write-protected.

    • The directory has enough free space. Otherwise, the archiving process cannot archive any log files and no further actions are possible on the database (this is known as "Archiver Stuck").

      Note Note

      For more information about the BR*Tools commands mentioned below, see Altering the Database Instance with BR*Tools and -f dbalter.

      End of the note.
  2. Check the archiving status of the database by choosing   Instance Management   Show instance status   in BR*Tools.

    The system displays database instance details.

  3. Check that:

    • Archivelog mode is set to ARCHIVELOG

    • Archiver status is set to STARTED

  4. If you need to reset ARCHIVELOG mode, do this in one of the following ways:

    1. Do one of the following:

      • Choose   Instance Management   Alter database instance   in BRGUI or BRTOOLS and choose the action Set archivelog mode.

      • Enter the following from the command line:

        brspace -f dbalter -a archlog

      • Enter the following commands in the Oracle tool SQLPLUS:

        SQL> connect / as sysdba

        SQL> startup mount

        SQL> alter database archivelog

        SQL> alter database open

        SQL> archive log list

        BRSPACE or SQLPLUS reconfigures the database to set ARCHIVELOG mode on.

    2. Repeat steps 2 and 3 to check that ARCHIVELOG has been set correctly.

  5. If you need to enable automatic archiving (that is, to start the ARCH process), do the following:

    1. Enter the following commands in the Oracle tool SQLPLUS:

      SQL> connect / as sysdba

      SQL> alter system archive log start;

      SQL> archive log list

    2. Repeat steps 2 and 3 to check that ARCHIVELOG has been set correctly.