I'm working on a Maintenance Plan for doing Backups on my server. I just want to know if SQL Server maintains a list of the backup files that were created during the backup process?
Thanks a lot!
I'm working on a Maintenance Plan for doing Backups on my server. I just want to know if SQL Server maintains a list of the backup files that were created during the backup process?
Thanks a lot!
For get this information using SQL you can run the following query
USE msdb
Go
SELECT *
FROM backupfile
complete list of backup history tables and explation of each one can be foound on MSDN http://technet.microsoft.com/en-us/library/ms188062.aspx
By Pinal Dave SOURCE