|
Task Description: Database Backup Document
Modified: Task: Create a copy of the database to
be used for recovery. Rationale: To provide for minimal data loss
in case of media failure or user error. Timeline: Continuous Brief Process
Description:
Notes: The trapping database
should be backed up daily during the active trapping season. The database is
run in archivelog mode which means the online redo logs are copied to the
mothsbane directory 'D:oracle\rdbmsarc*.001 ' as they are filled. Processes: The
backup has been automated as an Oracle Enterprise Manager job (trapbackup)
that runs daily at run { allocate channel Channel1
type disk format 'D:\oracle\ora92\database\trapbackup\b_%u_%p_%c'; backup ( database
include current controlfile ); backup ( archivelog all not backed up 3 times ); } allocate channel for
maintenance device type disk; delete archivelog until
time 'sysdate - 7' backed up 3 times to disk; delete obsolete device type
disk; |