Tagged: Finding Database Restore Date

Finding Database Restore Date in SQL Server

Hello everyone, In this article, I will provide information about finding the database restoration date in SQL Server. We may need to find the date the database was restored in SQL Server. You can easily do this using the query below. USE msdb; SELECT DBRestored = destination_database_name, RestoreDate = restore_date,...

Don`t copy text!