Oracle8i Backup and Recovery Guide Release 8.1.5 A67773-01 |
|
A sub-clause specifying the type of storage for a backup or copy.
This example allocates a maintenance channel for a media management device:
allocate channel for maintenance type 'sbt_tape';
This example backs up the database to disk:
run { allocate channel ch1 type disk; backup database; }
This example recovers the database using backups from disk and tape:
run { allocate channel d1 type disk; allocate channel t1 type 'sbt_tape' restore database; recover database; }