2010-07-19 155 views

回答

3

使用msdb數據庫中restorehistory表中的字段restore_date。

MSDN - restorehistory

SELECT 
MAX(restore_date) 
FROM 
msdb.dbo.restorehistory 
WHERE destination_database_name = 'SomeDB' 
相關問題