Duplexed
RMAN> configure datafile backup copies for device type sbt to 3;
RMAN> configure datafile backup copies for device type disk to 2;
RMAN> configure channel device type disk
format '/folder1/%U', '/folder2/%U';
RMAN> backup as compressed backupset device type disk copies 2
tablespace users
format '/folder1/%U', '/folder2/%U';
backup of existing backups
RMAN> backup device type sbt backupset all;
RMAN> backup device type sbt backupset
completed before 'sysdate-14'
delete input;
Archival
RMAN> backup as compressed backupset database format '/folder/%U'
tag "forever"
keep forever;
RMAN> backup as compressed backupset database format '/folder/%U'
tag "yearly"
keep until time 'sysdate+365';
Multi-section
RMAN> backup tablespace users section size 100M; RMAN> validate tablespace users section size 100M;
Compressed
RMAN> configure compression algorithm 'BZIP2' | 'ZLIB';
Encrypted
RMAN> configure encryption for database on; RMAN> set encryption identified by "passwd1", "passwd2", ..; RMAN> set encryption identified by "***" only;