You issue the RMAN commands:
RMAN> CONFIGURE DEFAULT DEVICE TYPE TO disk;
RKAN> CONFIGURE DEVICE TYPE DISK BACKUP TYPE TO COPY;
RMAN>CONFIGURE CONTROLFILE AUTOBACKUP ON;
RMAN> BACKUP DATABASE PLUS ARCHIVELOG DELETE INPUT;
Which three tasks are performed by the BACKUP DATABASE command?
A.
switching the online redo log file
B.
backing up all data files as image copies and archive log files, and deleting those archive
log files
C.
backing up only the used blocks in the data files
D.
backing up all used and unused blocks in the data files
E.
backing up all archived log files and marking them as obsolete
B, D, E
Puntano,
I don’t agree with E, as ‘BACKUP DATABASE PLUS ARCHIVELOG DELETE INPUT;’ will delete archivelogs , so no point of marking them obsolete.
A,B,D
You’ll find about A here
https://docs.oracle.com/database/121/BRADV/rcmbckba.htm#BRADV89516
Thanks Siegfried!
A, B, D
ABD
ABD
The following example backs up the database, switches the online redo logs, and includes archived logs in the backup:
BACKUP DATABASE PLUS ARCHIVELOG;
A,B,D
A B D
A
http://docs.oracle.com/cd/E16338_01/backup.112/b56269/rcmbckba.htm#sthref829
B
https://docs.oracle.com/cd/E16338_01/backup.112/b56270/rcmsynta007.htm#CHDIEAIE
ABD