All technological notes.
DISK and SBT (system backup to tape).DISK
DISK channel for a backup, then the channel creates the backup on disk in the file name space of the target database instance creating the backup.SBT device
RMAN contacts the media manager whenever the channel type allocated is not DISK.
non-disk media, you must use media management software such as Oracle Secure Backup and allocate channels supported by this software.To use tape storage for your database backups, RMAN requires Oracle Secure Backup or a media manager.
Media manager
sequential media (such as tape drives) for the purpose of backing up, restoring, and recovering data.
Media Management Library (MML)
media manager. 一个包MML software when it backs up to disk. 备份到磁盘时, 无需连接 MMLmedia management software
sequential media devices such as tape libraries.media manager, you must install the media manager software and make sure that RMAN can communicate with it.Oracle Backup Solutions Program (BSP)
MML specification.MML interface enables an Oracle database session to back up data to a media manager and request the media manager to restore backups. Check with your media vendor to determine whether it is a member of Oracle BSP.Media Managermedia 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 deviceand requests themedia managerto load a tape and write the output..
-- 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;