Which statement is true about the execution of the command?

For your database, an incremental level 1 backup is taken every week day. On Tuesday,
before the backup is performed, you add a new tablespace. You execute the command:
RMAN> BACKUP INCREMENTAL LEVEL 1 FOR RECOVER OF COPY WITH TAG
WEEKLY DATABASE; Which statement is true about the execution of the command?

For your database, an incremental level 1 backup is taken every week day. On Tuesday,
before the backup is performed, you add a new tablespace. You execute the command:
RMAN> BACKUP INCREMENTAL LEVEL 1 FOR RECOVER OF COPY WITH TAG
WEEKLY DATABASE; Which statement is true about the execution of the command?

A.
It performs a backup as a backup set of all data files including those that belong to the
new tablespace.

B.
It returns an error because there is no level 0 backup available for new data files.

C.
It performs an image copy backup of new data files, and a level 1 incremental backup of
all other data files.

D.
It performs a level-0 backup of all data files including those that belong to the new
tablespace.

E.
It performs an image copy backup of all data files including those that belong to the new
tablespace.



Leave a Reply 3

Your email address will not be published. Required fields are marked *


readyplayerone

readyplayerone

I think is D.

https://oracle-base.com/articles/misc/incrementally-updated-image-copy-backups

RUN {
RECOVER COPY OF DATABASE WITH TAG ‘mydb_incr_backup’ UNTIL TIME ‘SYSDATE – 7’;
BACKUP INCREMENTAL LEVEL 1 FOR RECOVER OF COPY WITH TAG ‘mydb_incr_backup’ DATABASE;
}
The RECOVER COPY… line will not do anything until the script has been running for more than 7 days. The BACKUP INCREMENTAL line will perform a complete backup (level 0) the first day it is run, with all subsequent backups being level 1 incremental backups.