053-236

Your database is running in ARCHIVELOG mode, and the database is open. You execute an RMAN backup and specify the KEEP clause.
Which components are backed up when this option is specified?
A. only the control file, the current SPFILE, and data files
B. only the current SPFILE and data files if autobackup is disabled
C. only the data files and the archived redo logs
D. the control file, current SPFILE file, data files, and archived redo logs

此题考点是 keep 子句的使用.
如果在 BACKUP 命令中使用了 KEEP,RMAN 会生成 U 盾讴歌备份集,并有下列特性:
1.会自动备份数据文件控制文件(即便自动控制文件备份被禁用),和参数文件
2.自动生成归档日志文件备份来确保数据库备份可以恢复到一致性状态。
3.如果 FORMAT,POOL 或 TAG 参数被指定,那么会被所有的备份指定。所以 FORMAT 字符串必须允许多个备份片(%U)
4.支持使用 RESTORE POINT 子句来创建一个普通的重建点。 也就是一个 SCN 标记让备份必须能恢复到且保证一致性。这个 SCN 在刚完成数据文件备份时被捕获。 RMAN 会同步重建点到恢复目录中,并维持重建点一直存在备份。

原文地址:https://www.cnblogs.com/Babylon/p/7845182.html