#************************************************************************ # Filename : backup_O920_OFFLINE.rcv # Description : RMAN OFFLINE backup for O920 database # Use : rman @backup_O920_OFFLINE.rcv # 20050421_1314 Generated by PDS::run_rman() #************************************************************************ connect catalog rman/rman@rman920 connect target run { # Allocate 2 DISK channel(s) # Cap disk backup set piece size at 2 GB allocate channel PDS_DISK_1 type DISK format 'c:\backups\O920/dbOFFLINE_%d_t%t_s%s_p%p'; setlimit channel PDS_DISK_1 kbytes 2097150 maxopenfiles 32; allocate channel PDS_DISK_2 type DISK format 'c:\backups\O920/dbOFFLINE_%d_t%t_s%s_p%p'; setlimit channel PDS_DISK_2 kbytes 2097150 maxopenfiles 32; set command id to 'rman_%d_OFFLINE'; backup incremental level 0 skip inaccessible tag bkup_db_OFFLINE_inc_0 # Cap backup set size at 8 GB #maxsetsize = 8192M filesperset 5 database; # Run archived redo log backup backup # Cap backup set size at 8 GB #maxsetsize = 8192M filesperset 10 archivelog all; # Release 2 DISK channel(s) release channel PDS_DISK_1; release channel PDS_DISK_2; } #************************************************************************