Is it possible to do so using T-SQL alone? What query would you write against the system tables?
+3
A:
Use the field restore_date in the restorehistory table in the msdb database.
SELECT
MAX(restore_date)
FROM
msdb.dbo.restorehistory
WHERE destination_database_name = 'SomeDB'
thedugas
2010-07-19 04:21:05