Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Table of Contents

Version

All versions

Explanation

Unable to perform an online backup.

Cause

An online backup has been performed in NO ARCHIVING mode. 

Action

An online backup can only be performed in ARCHIVING mode. Otherwise, an error occurs. 

Check whether the database is running in ARCHIVING mode with the following command:

Code Block
languagesql
iSQL>select archivelog_mode from v$log;
ARCHIVELOG_MODE
------------------------
NOARCHIVE

<How to change to ARCHIVING mode from NOARCHIVING mode>

1. Shut down the database.

2. Re-start the database.

3. Run the database in the CONTROL phase.

Code Block
SHELL>server stop
SHELL>is –silent –sysdba
Note

ERR-910FB : Connected to idle instance
isql(sysdba)>startup control

4. Change to ARCHIVING mode using the ALTER DATABASE ARCHIVELOG statement.

Code Block
languagesql
isql(sysdba)>alter database archivelog

<Execute an online backup in ARCHIVING MODE>

1. Run the database in the SERVICE phase.

Code Block
languagesql
isql(sysdba)>startup service

2. Re-start backup. 

Reference

N/A