053-264
Using the LIST command in Recovery Manager (RMAN), which two pieces of information in the RMAN repository can be listed? (Choose two.)
A. stored scripts in the recovery catalog
B. backups that can be deleted from disk
C. backup sets and image copies are obsolete
D. backups that do not have the AVAILABLE status in the RMAN repository
LIST BACKUP;--列出数据库所有备份信息,其中 status 部分信息 可以看出是否是
AVAILABLE 状态, D 对
查看指定的 dbf 数据文件备份:LIST BACKUP OF DATAFILE n(数据文件序列号) ;
LIST BACKUP OF DATABASE; 查看全库备份
LIST BACKUP OF TABLESPACE USERS;
LIST BACKUP OF CONTROLFILE;
LIST BACKUP OF ARCHIVELOG ALL;
LIST DEVICE TYOE DISK BACKUP;列出某个设备上的所有信息
LIST ARCHIVELOG ALL;列出当前数据库所有归档
list expired archivelog all; -列出无效归档
LIST EXPIRED BACKUP;列出无效备份;
list all script names; --查看 catalog 中所有保存脚本的名字。 然后再 list scipt xxxx 可查
看具体脚本内容, A 对