Oracle does support all Incremental (as well as Full) Backups of Databases running in NOARCHIVELOG mode. Such backups can be made when the database is in MOUNT (not OPEN) mode.
There are 2 "downsides" to Backups in NOARCHIVELOG mode :
1. The database is unavailable (as it is not OPEN) for the duration of the BACKUP DATABASE run. So, it would be a good idea to make frequent Incremental Level-1 backups as they could be faster (shorter duration) than the Level-0 backups (which could be scheduled during longer maintenance weekend hours)
2. If you lose any datafile(s) (one or more) you have to RESTORE and RECOVER the *whole* database. You cannot restore and recover individual datafiles for a database in NOARCHIVELOG mode as you would be able to do with backups with ArchiveLogs.
oracle19c>rman target / Recovery Manager: Release 19.0.0.0.0 - Production on Sun Jan 31 20:01:50 2021 Version 19.3.0.0.0 Copyright (c) 1982, 2019, Oracle and/or its affiliates. All rights reserved. connected to target database: HEMANT (DBID=432411782) RMAN> backup as compressed backupset incremental level 0 database ; Starting backup at 31-JAN-21 using target database control file instead of recovery catalog allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=35 device type=DISK RMAN-00571: =========================================================== RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== RMAN-00571: =========================================================== RMAN-03002: failure of backup command at 01/31/2021 20:02:07 RMAN-06149: cannot BACKUP DATABASE in NOARCHIVELOG mode RMAN> RMAN> shutdown immediate; database closed database dismounted Oracle instance shut down RMAN> startup mount; connected to target database (not started) Oracle instance started database mounted Total System Global Area 1207958960 bytes Fixed Size 8895920 bytes Variable Size 318767104 bytes Database Buffers 872415232 bytes Redo Buffers 7880704 bytes RMAN> backup as compressed backupset incremental level 0 database ; Starting backup at 31-JAN-21 allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=257 device type=DISK channel ORA_DISK_1: starting compressed incremental level 0 datafile backup set channel ORA_DISK_1: specifying datafile(s) in backup set input datafile file number=00001 name=/opt/oracle/oradata/HEMANT/system.dbf input datafile file number=00002 name=/opt/oracle/oradata/HEMANT/sysaux.dbf input datafile file number=00003 name=/opt/oracle/oradata/HEMANT/undotbs.dbf input datafile file number=00004 name=/opt/oracle/oradata/HEMANT/TDE_TARGET_TBS_encrypted.dbf input datafile file number=00005 name=/opt/oracle/oradata/HEMANT/indx01.dbf input datafile file number=00010 name=/opt/oracle/oradata/HEMANT/indx02.dbf input datafile file number=00011 name=/opt/oracle/oradata/HEMANT/indx03.dbf input datafile file number=00006 name=/opt/oracle/oradata/HEMANT/HR_DATA.dbf channel ORA_DISK_1: starting piece 1 at 31-JAN-21 channel ORA_DISK_1: finished piece 1 at 31-JAN-21 piece handle=/opt/oracle/product/19c/dbhome_1/dbs/14vm1l86_1_1 tag=TAG20210131T200317 comment=NONE channel ORA_DISK_1: backup set complete, elapsed time: 00:00:15 Finished backup at 31-JAN-21 Starting Control File and SPFILE Autobackup at 31-JAN-21 piece handle=/opt/oracle/product/19c/dbhome_1/dbs/c-432411782-20210131-00 comment=NONE Finished Control File and SPFILE Autobackup at 31-JAN-21 RMAN> RMAN> exit Recovery Manager complete. oracle19c>sqlplus '/ as sysdba' SQL*Plus: Release 19.0.0.0.0 - Production on Sun Jan 31 20:05:44 2021 Version 19.3.0.0.0 Copyright (c) 1982, 2019, Oracle. All rights reserved. Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production Version 19.3.0.0.0 SQL> select max(sequence#), current_scn from v$log, v$database group by current_scn; MAX(SEQUENCE#) CURRENT_SCN -------------- ----------- 865 864084 SQL> archive log list; Database log mode No Archive Mode Automatic archival Disabled Archive destination /opt/oracle/archivelog/HEMANT Oldest online log sequence 863 Current log sequence 865 SQL>
At approximately 20:05 on 31-Jan-2021, the database is in NOARCHIVELOG mode. So, an RMAN BACKUP DATABASE command fails when the Database is OPEN. I must restart the Database Instance in MOUNT (no OPEN) state to run an RMAN Backup. I am particular to make this backup explicitly a Level-0 backup so that I can later take a Level-1 backup.
oracle19c>sqlplus '/ as sysdba' SQL*Plus: Release 19.0.0.0.0 - Production on Sun Jan 31 21:40:27 2021 Version 19.3.0.0.0 Copyright (c) 1982, 2019, Oracle. All rights reserved. Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production Version 19.3.0.0.0 SQL> select max(sequence#), current_scn from v$log, v$database group by current_scn; MAX(SEQUENCE#) CURRENT_SCN -------------- ----------- 872 869174 SQL> select count(*) from hemant.my_test_table; COUNT(*) ---------- 24554 SQL> SQL> shutdown immediate; Database closed. Database dismounted. ORACLE instance shut down. SQL> exit Disconnected from Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production Version 19.3.0.0.0 oracle19c>rman target / Recovery Manager: Release 19.0.0.0.0 - Production on Sun Jan 31 21:43:17 2021 Version 19.3.0.0.0 Copyright (c) 1982, 2019, Oracle and/or its affiliates. All rights reserved. connected to target database (not started) RMAN> startup mount Oracle instance started database mounted Total System Global Area 1207958960 bytes Fixed Size 8895920 bytes Variable Size 318767104 bytes Database Buffers 872415232 bytes Redo Buffers 7880704 bytes RMAN> backup as compressed backupset incremental level 1 database; Starting backup at 31-JAN-21 using target database control file instead of recovery catalog allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=257 device type=DISK channel ORA_DISK_1: starting compressed incremental level 1 datafile backup set channel ORA_DISK_1: specifying datafile(s) in backup set input datafile file number=00001 name=/opt/oracle/oradata/HEMANT/system.dbf input datafile file number=00002 name=/opt/oracle/oradata/HEMANT/sysaux.dbf input datafile file number=00003 name=/opt/oracle/oradata/HEMANT/undotbs.dbf input datafile file number=00004 name=/opt/oracle/oradata/HEMANT/TDE_TARGET_TBS_encrypted.dbf input datafile file number=00005 name=/opt/oracle/oradata/HEMANT/indx01.dbf input datafile file number=00010 name=/opt/oracle/oradata/HEMANT/indx02.dbf input datafile file number=00011 name=/opt/oracle/oradata/HEMANT/indx03.dbf input datafile file number=00006 name=/opt/oracle/oradata/HEMANT/HR_DATA.dbf channel ORA_DISK_1: starting piece 1 at 31-JAN-21 channel ORA_DISK_1: finished piece 1 at 31-JAN-21 piece handle=/opt/oracle/product/19c/dbhome_1/dbs/16vm1r4l_1_1 tag=TAG20210131T214349 comment=NONE channel ORA_DISK_1: backup set complete, elapsed time: 00:00:15 Finished backup at 31-JAN-21 Starting Control File and SPFILE Autobackup at 31-JAN-21 piece handle=/opt/oracle/product/19c/dbhome_1/dbs/c-432411782-20210131-01 comment=NONE Finished Control File and SPFILE Autobackup at 31-JAN-21 RMAN> RMAN> alter database open; Statement processed RMAN> exit Recovery Manager complete. oracle19c>
So, with further transactions between 20:05 and 21:43, the highest Log Sequence# has gone from 865 to 872 (none of which are Archived) and the Database SCN has gone from 864084 to 869174.
oracle19c>sqlplus '/ as sysdba' SQL*Plus: Release 19.0.0.0.0 - Production on Sun Jan 31 21:57:21 2021 Version 19.3.0.0.0 Copyright (c) 1982, 2019, Oracle. All rights reserved. Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production Version 19.3.0.0.0 SQL> select max(sequence#), current_scn from v$log, v$database group by current_scn; MAX(SEQUENCE#) CURRENT_SCN -------------- ----------- 877 870492 SQL> select count(*) from hemant.my_test_table; COUNT(*) ---------- 27554 SQL>
There have been more transactions (incremented Log Sequence#, SCN and Row Count). However, I do not have a fresh backup of the database (and the database does not generate ArchiveLogs).
SQL> shutdown immediate; ORA-01116: error in opening database file 1 ORA-01110: data file 1: '/opt/oracle/oradata/HEMANT/system.dbf' ORA-27041: unable to open file Linux-x86_64 Error: 2: No such file or directory Additional information: 3 SQL> RMAN> shutdown abort; using target database control file instead of recovery catalog Oracle instance shut down RMAN> startup nomount; connected to target database (not started) Oracle instance started Total System Global Area 1207958960 bytes Fixed Size 8895920 bytes Variable Size 318767104 bytes Database Buffers 872415232 bytes Redo Buffers 7880704 bytes RMAN> restore controlfile from '/opt/oracle/product/19c/dbhome_1/dbs/c-432411782-20210131-01'; Starting restore at 31-JAN-21 allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=20 device type=DISK channel ORA_DISK_1: restoring control file channel ORA_DISK_1: restore complete, elapsed time: 00:00:01 output file name=/opt/oracle/oradata/HEMANT/control01.ctl output file name=/opt/oracle/oradata/HEMANT/control02.ctl Finished restore at 31-JAN-21 RMAN> alter database mount; released channel: ORA_DISK_1 Statement processed RMAN> RMAN> restore database; Starting restore at 31-JAN-21 allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=20 device type=DISK channel ORA_DISK_1: starting datafile backup set restore channel ORA_DISK_1: specifying datafile(s) to restore from backup set channel ORA_DISK_1: restoring datafile 00001 to /opt/oracle/oradata/HEMANT/system.dbf channel ORA_DISK_1: restoring datafile 00002 to /opt/oracle/oradata/HEMANT/sysaux.dbf channel ORA_DISK_1: restoring datafile 00003 to /opt/oracle/oradata/HEMANT/undotbs.dbf channel ORA_DISK_1: restoring datafile 00004 to /opt/oracle/oradata/HEMANT/TDE_TARGET_TBS_encrypted.dbf channel ORA_DISK_1: restoring datafile 00005 to /opt/oracle/oradata/HEMANT/indx01.dbf channel ORA_DISK_1: restoring datafile 00006 to /opt/oracle/oradata/HEMANT/HR_DATA.dbf channel ORA_DISK_1: restoring datafile 00010 to /opt/oracle/oradata/HEMANT/indx02.dbf channel ORA_DISK_1: restoring datafile 00011 to /opt/oracle/oradata/HEMANT/indx03.dbf channel ORA_DISK_1: reading from backup piece /opt/oracle/product/19c/dbhome_1/dbs/14vm1l86_1_1 channel ORA_DISK_1: piece handle=/opt/oracle/product/19c/dbhome_1/dbs/14vm1l86_1_1 tag=TAG20210131T200317 channel ORA_DISK_1: restored backup piece 1 channel ORA_DISK_1: restore complete, elapsed time: 00:00:25 Finished restore at 31-JAN-21 RMAN> recover database noredo; Starting recover at 31-JAN-21 using channel ORA_DISK_1 channel ORA_DISK_1: starting incremental datafile backup set restore channel ORA_DISK_1: specifying datafile(s) to restore from backup set destination for restore of datafile 00001: /opt/oracle/oradata/HEMANT/system.dbf destination for restore of datafile 00002: /opt/oracle/oradata/HEMANT/sysaux.dbf destination for restore of datafile 00003: /opt/oracle/oradata/HEMANT/undotbs.dbf destination for restore of datafile 00004: /opt/oracle/oradata/HEMANT/TDE_TARGET_TBS_encrypted.dbf destination for restore of datafile 00005: /opt/oracle/oradata/HEMANT/indx01.dbf destination for restore of datafile 00006: /opt/oracle/oradata/HEMANT/HR_DATA.dbf destination for restore of datafile 00010: /opt/oracle/oradata/HEMANT/indx02.dbf destination for restore of datafile 00011: /opt/oracle/oradata/HEMANT/indx03.dbf channel ORA_DISK_1: reading from backup piece /opt/oracle/product/19c/dbhome_1/dbs/16vm1r4l_1_1 channel ORA_DISK_1: piece handle=/opt/oracle/product/19c/dbhome_1/dbs/16vm1r4l_1_1 tag=TAG20210131T214349 channel ORA_DISK_1: restored backup piece 1 channel ORA_DISK_1: restore complete, elapsed time: 00:00:02 Finished recover at 31-JAN-21 RMAN> RMAN> alter database open resetlogs; Statement processed RMAN> exit Recovery Manager complete. oracle19c>sqlplus '/ as sysdba' SQL*Plus: Release 19.0.0.0.0 - Production on Sun Jan 31 22:07:53 2021 Version 19.3.0.0.0 Copyright (c) 1982, 2019, Oracle. All rights reserved. Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production Version 19.3.0.0.0 SQL> select current_scn from v$database; CURRENT_SCN ----------- 870157 SQL> select max(sequence#) from v$log; MAX(SEQUENCE#) -------------- 1 SQL> SQL> select count(*) from hemant.my_test_table; COUNT(*) ---------- 24554 SQL>
Note that I was able to use the controlfile autobackup. Then, the RESTORE DATABASE command restored datafiles from the Backup Piece(s) /opt/oracle/product/19c/dbhome_1/dbs/14vm1l86_1_1 that contained the Level-0 backup. The RECOVER DATABASE NOREDO actually copied datafile incremental changes from the Level-1 backup piece /opt/oracle/product/19c/dbhome_1/dbs/16vm1r4l_1_1.
oracle19c>rman target / Recovery Manager: Release 19.0.0.0.0 - Production on Sun Jan 31 22:20:04 2021 Version 19.3.0.0.0 Copyright (c) 1982, 2019, Oracle and/or its affiliates. All rights reserved. connected to target database: HEMANT (DBID=432411782) RMAN> list backup of datafile 1; using target database control file instead of recovery catalog List of Backup Sets =================== BS Key Type LV Size Device Type Elapsed Time Completion Time ------- ---- -- ---------- ----------- ------------ --------------- 41 Incr 0 73.66M DISK 00:00:12 31-JAN-21 BP Key: 41 Status: AVAILABLE Compressed: YES Tag: TAG20210131T200317 Piece Name: /opt/oracle/product/19c/dbhome_1/dbs/14vm1l86_1_1 List of Datafiles in backup set 41 File LV Type Ckp SCN Ckp Time Abs Fuz SCN Sparse Name ---- -- ---- ---------- --------- ----------- ------ ---- 1 0 Incr 863156 31-JAN-21 NO /opt/oracle/oradata/HEMANT/system.dbf BS Key Type LV Size Device Type Elapsed Time Completion Time ------- ---- -- ---------- ----------- ------------ --------------- 43 Incr 1 2.83M DISK 00:00:10 31-JAN-21 BP Key: 43 Status: AVAILABLE Compressed: YES Tag: TAG20210131T214349 Piece Name: /opt/oracle/product/19c/dbhome_1/dbs/16vm1r4l_1_1 List of Datafiles in backup set 43 File LV Type Ckp SCN Ckp Time Abs Fuz SCN Sparse Name ---- -- ---- ---------- --------- ----------- ------ ---- 1 1 Incr 869282 31-JAN-21 NO /opt/oracle/oradata/HEMANT/system.dbf RMAN>
For the Level-0 Backup, the datafile Checkpoint SCN is lower than that I had from the SQL Query because the SQL query was when the database was opened *after* the Backup.
2 comments:
Great and helpful post!
Is restoring the controlfile required in this case, or would using the current controlfile also work?
Anonymous,
Anonymous,
See my follow up post https://hemantoracledba.blogspot.com/2021/02/restore-and-recover-noarchivelog.html
RMAN won't allow an OPEN RESETLOGS if you don't restore the older Controlfile (backup).
But you can fallback to the SQL commands using sqlplus as I show in the new post.
Post a Comment