RMAN> show all;
RMAN configuration parameters for database with db_unique_name ORA19C are: CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default CONFIGURE BACKUP OPTIMIZATION OFF; # default CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default CONFIGURE CONTROLFILE AUTOBACKUP ON; # default CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default CONFIGURE DEVICE TYPE DISK PARALLELISM 2 BACKUP TYPE TO BACKUPSET; CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default CONFIGURE CHANNEL 1 DEVICE TYPE DISK FORMAT '/oraarch/ORA19C/backup/rman_%d_%U'; CONFIGURE CHANNEL 2 DEVICE TYPE DISK FORMAT '/u01/app/oracle/admin/ORA19C/bkpspace2/rman_%d_%U'; CONFIGURE MAXSETSIZE TO UNLIMITED; # default CONFIGURE ENCRYPTION FOR DATABASE OFF; # default CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default CONFIGURE RMAN OUTPUT TO KEEP FOR 7 DAYS; # default CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/u01/app/oracle/product/19.0.0/db_1/dbs/snapcf_ORA19C.f'; # default
RMAN> run { ALLOCATE CHANNEL d1 DEVICE TYPE DISK FORMAT '/oraarch/ORA19C/backup/rman_test_%d_%U'; ALLOCATE CHANNEL d2 DEVICE TYPE DISK FORMAT '/u01/app/oracle/admin/ORA19C/bkpspace2/rman_test_%d_%U'; 2> 3> 4> backup as compressed backupset section size 32G filesperset 1 database; }5> 6>
allocated channel: d1 channel d1: SID=86 device type=DISK
allocated channel: d2 channel d2: SID=33 device type=DISK
Starting backup at 25-SEP-23 channel d1: starting compressed full datafile backup set channel d1: specifying datafile(s) in backup set input datafile file number=00001 name=/oradata/ORA19C/system01.dbf channel d1: starting piece 1 at 25-SEP-23 channel d2: starting compressed full datafile backup set channel d2: specifying datafile(s) in backup set input datafile file number=00003 name=/oradata/ORA19C/sysaux01.dbf .. piece handle=/u01/app/oracle/admin/ORA19C/bkpspace2/rman_test_ORA19C_11278mva_1_1 tag=TAG20230925T131159 comment=NONE channel d2: backup set complete, elapsed time: 00:00:01 channel d2: starting compressed full datafile backup set channel d2: specifying datafile(s) in backup set input datafile file number=00012 name=/oradata/ORA19C/opdb1/users01.dbf channel d2: starting piece 1 at 25-SEP-23 channel d1: finished piece 1 at 25-SEP-23 piece handle=/oraarch/ORA19C/backup/rman_test_ORA19C_0v278mv8_1_1 tag=TAG20230925T131159 comment=NONE channel d1: backup set complete, elapsed time: 00:00:04 channel d2: finished piece 1 at 25-SEP-23 piece handle=/u01/app/oracle/admin/ORA19C/bkpspace2/rman_test_ORA19C_12278mvb_1_1 tag=TAG20230925T131159 comment=NONE channel d2: backup set complete, elapsed time: 00:00:01 Finished backup at 25-SEP-23
Starting Control File and SPFILE Autobackup at 25-SEP-23 piece handle=/oraarch/ORA19C/autobackup/2023_09_25/o1_mf_s_1148476396_lk2ybwlm_.bkp comment=NONE Finished Control File and SPFILE Autobackup at 25-SEP-23 released channel: d1 released channel: d2
2) Verify the backup
RMAN> list backup of database summary;
List of Backups =============== Key TY LV S Device Type Completion Time #Pieces #Copies Compressed Tag ------- -- -- - ----------- --------------- ------- ------- ---------- --- 12 B F A DISK 25-SEP-23 1 1 YES TAG20230925T130624 << 1st 13 B F A DISK 25-SEP-23 1 1 YES TAG20230925T130624 14 B F A DISK 25-SEP-23 1 1 YES TAG20230925T130624 15 B F A DISK 25-SEP-23 1 1 YES TAG20230925T130624 16 B F A DISK 25-SEP-23 1 1 YES TAG20230925T130624 17 B F A DISK 25-SEP-23 1 1 YES TAG20230925T130624 18 B F A DISK 25-SEP-23 1 1 YES TAG20230925T130624 19 B F A DISK 25-SEP-23 1 1 YES TAG20230925T130624 20 B F A DISK 25-SEP-23 1 1 YES TAG20230925T130624 21 B F A DISK 25-SEP-23 1 1 YES TAG20230925T130624 22 B F A DISK 25-SEP-23 1 1 YES TAG20230925T130624 24 B F A DISK 25-SEP-23 1 1 YES TAG20230925T131159 << 2nd 25 B F A DISK 25-SEP-23 1 1 YES TAG20230925T131159 26 B F A DISK 25-SEP-23 1 1 YES TAG20230925T131159 27 B F A DISK 25-SEP-23 1 1 YES TAG20230925T131159 28 B F A DISK 25-SEP-23 1 1 YES TAG20230925T131159 29 B F A DISK 25-SEP-23 1 1 YES TAG20230925T131159 30 B F A DISK 25-SEP-23 1 1 YES TAG20230925T131159 31 B F A DISK 25-SEP-23 1 1 YES TAG20230925T131159 32 B F A DISK 25-SEP-23 1 1 YES TAG20230925T131159 33 B F A DISK 25-SEP-23 1 1 YES TAG20230925T131159 34 B F A DISK 25-SEP-23 1 1 YES TAG20230925T131159
RMAN>
|