2010-07-19 92 views

回答

3

使用msdb数据库中restorehistory表中的字段restore_date。

MSDN - restorehistory

SELECT 
MAX(restore_date) 
FROM 
msdb.dbo.restorehistory 
WHERE destination_database_name = 'SomeDB'