Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

Backup - Channels and Devices

Back


Channels and Devices


Disk


System Backup to Tape(SBT)

Media Manager

media_manager


MML + Media manager software
BSP

Example: Backup with Media Manager

run {
# Allocating a channel of type 'sbt' for serial device
ALLOCATE CHANNEL chl DEVICE TYPE sbt;

BACKUP DATAFILE 3;
}

This command sends the backup request to the Oracle database session performing the backup. The Oracle database session identifies the output channel as a media management device and requests the media manager to load a tape and write the output..


Commands

-- configured default device type:
CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
CONFIGURE DEFAULT DEVICE TYPE TO sbt;

-- override the default device
BACKUP DEVICE TYPE sbt DATABASE;
BACKUP DEVICE TYPE DISK DATABASE;

TOP