Physical Backups  «Prev 

Steps to perform Open Database Backup

The log writer is the background process responsible for writing transaction information from the redo log buffer (in the SGA) to the online redo log files (on disk). The Log writer flushes the contents of the redo log buffer when any of the following are true:
  1. A COMMIT or ROLLBACK issued.
  2. A log switch occurs.
  3. Three seconds go by.
  4. The redo log buffer is one-third full.
  5. The redo log buffer fills to one megabyte.
The online redo log group that the log writer is actively writing to is the current online redo log group. The log writer writes simultaneously to all members of a redo log group and needs to successfully write to only one member in order for the database to continue operating. The database ceases operating if the log writer cannot write successfully to at least one member of the current group.
When the current online redo log group fills up, a log switch occurs, and the log writer starts writing to the next online redo log group. The log writer writes to the online redo log groups in a round-robin fashion. Because you have a finite number of online redo log groups, eventually the contents of each online redo log group are overwritten. If you want to save a history of the transaction information, you must place your database in archivelog mode.
When your database is in archivelog mode, after every log switch the archiver background process copies the contents of the online redo log file to an archived redo log file. In the event of a failure the archived redo log files allow you to restore the complete history of transactions that have occurred since your last database backup.

The DBA must ensure the correct ORACLE_SID is set (1). From the Windows Command Prompt, the DBA starts Oracle Server Manger (2).
$ svrmgrl
svrmgrl> connect internal
should be replaced with:
$ sqlplus "/ as sysdba" 
"svrmgrl" utility is deprecated in Oracle9i. You need to use "sqlplus" for connecting to the database.

The DBA ensures the database is operating in ARCHIVELOG mode

DBA determines files to backup, tablespace OEM is to be backed up.


The correct view is DBA_DATA_FILES which contains the file name

DBA issues a select statement to get the file name


The DBA indicates to Oracle that a backup is about to begin

DBA uses Server Manager's HOST command to access the Operating System

DBA verifies the copy is present using the Operating System command DIR


DBA exits the operating system in order to return to the SVRMGR> prompt 1) and end the backup (2)

The DBA exits from the Operating System in order to return to the SVRMGR> prompt (1) and end the backup (2). Oracle updates the tablespace and datafile headers to the current log sequence number.