You issued the following RMAN command to back up the database:
RMAN> RUN{
ALLOCATE CHANNEL c1
DEVICE TYPE Sbt
BACKUP DATABASE
TAG quarterly
KEEP FOREVER
RESTORE POINT FY06Q4;}
Which two statements are true regarding the backup performed? (Choose two.)
A.
Archived redo log files are backed up along with data files
B.
Only data files are backed up and a restore point named FY06Q4 is created.
C.
Archived log files are backed up along with data files, and the archived log files are deleted.
D.
The command creates a restore point named FY06Q4 to match the SCN at which this backup
is consistent.
backup database will not include archivelog so the option A is wrong.
sorry for my earlier comments, option A is valid due to full syntax (keep forever restore point) so it will take the backup of archive logs also.