RMAN Backedup file
Hi,
We have done oracle rman configuration, also tested the backup using rman script.
want to know, how to check which files are backedup & from where i can see?
NBU 7.6
Master Server - Windows 2008
Agent - AIX
You can run the below command and get the list of backup pieces available in NetBackup for the RMAN backup taken
bplist -C <client_name> -S <master_name> -t 4 -l -R /
The name of the client and the master server must the same as it was used in the policy configuration. If the policy has the name as FQDN and you run the above command with the short name you would get a 227 error stating that no entity found.
If you have taken Proxy backups (default when you use OIP and deduplication STU) then the above command will list the .dbf files that were backed up. Else the command will list only backup pieces.
Once you have the backup piece name you need to go to RMAN and run
RMAN> list backup;
OR
RMAN> list backup summary;
This will tell you which files are associated with which backup piece.