In my previous post I shared some command which are related to get information RMAN backups. You can find this post in this link
In this post I try to give more details and examples for to get information about our RMAN backups
— The LIST command allows the backup data to be listed in the RMAN utility
RMAN> LIST BACKUP;
–To list all existing database backups use:
RMAN> LIST BACKUP OF DATABASE;
–To list all existing backups of a specific datafile use:
RMAN> LIST BACKUP OF DATAFILE ;
Example with file#
RMAN> LIST BACKUP OF DATAFILE 4;
Alternatively specify the datafile name. For example:
RMAN> LIST BACKUP OF DATAFILE ‘/u01/app/oradata/SID/users01.dbf’;
–To list all existing archivelog backups use:
RMAN> LIST BACKUP OF ARCHIVELOG ALL;
–To list all existing controfile backups use:
RMAN> LIST BACKUP OF CONTROLFILE;
–To list all existing SPFILE backups use:
RMAN> LIST BACKUP OF SPFILE;
–To list all archive logs use:
RMAN> LIST ARCHIVELOG ALL;
—To list Backup sets
RMAN> LIST BACKUPSET ;
For example:
RMAN> LIST BACKUPSET 14;
–To list all datafile image copies use:
RMAN> LIST DATAFILECOPY ALL;
–To list all controlfile copies use
RMAN> LIST COPY OF CONTROLFILE;
—List backups of a tablespace
RMAN> LIST BACKUP OF TABLESPACE USERS;
–List of Database Incarnations
RMAN> LIST INCARNATION;