SQL Script: - How to find the database restoring history of SQL Server databases

,

Sometime we need to find out the history of database restoration to get the answers of following questions: -

1) Do we need to restore the database again as there can be a possibility that it is restored recently?
2) Which backup file (with location information) is used for database restoration?
3) Name of the source database whose backup file is used database restoration?
4) When database backup file is created ?
5) Which user perform the database restoration activity?

Below query can be used for finding the database restoration history

SELECT [r].[destination_database_name] as [Database Name], 
[r].[restore_date] [Restore Date], 
[r].user_name as [User],
(cast(.software_major_version as varchar(10))+'.' + 
cast(.software_minor_version as varchar(10)) +'.'+
cast(.software_build_version as varchar(10))) as [Server version],
.compressed_backup_size as [Backup file Size],
.[backup_start_date] [Backup Start Time], 
.[backup_finish_date][Backup End Time], 
.[database_name] as [Source Database Name], 
[bkpmf].[physical_device_name] as [Backup File Used For Database Restore]
FROM msdb..restorehistory r
INNER JOIN msdb..backupset b
ON [r].[backup_set_id] = .[backup_set_id]
INNER JOIN msdb..backupmediafamily bkpmf 
ON .[media_set_id] = [bkpmf].[media_set_id] 
ORDER BY [r].[restore_date] DESC

For example, suppose we created a database name as "Sampledatabase" which is never restored. Then if we execute the above query we got no restoration history of this database:-


Now we take backup of this database 


and restore the "Sampledatabase" with the backup taken in the above step.


If we again execute the SQL Script to get database restoration history, we got the following result


Now if we take another backup with the different name as "SampleDatabase_1.bak" on the same location and tried to restore the database again, then one more entry for the Sampledatbase will come on the execution of the SQL query for getting Database restoration history as shown in below images



If we see the outcome of the query, we also got the version of the SQL server on which database backup file is created & the size of the backup file. Sometime these additional information can become handy.

I hope database guy will get help from this query. Please send me your valuable feedback on askvivekjohari@gmail.com. Thanks for visiting my blog.


Original post (opens in new tab)

Rate

You rated this post out of 5. Change rating

Share

Share

Rate

You rated this post out of 5. Change rating