2010-07-19 3 views

답변

3

msdb 데이터베이스의 restorehistory 테이블에서 restore_date 필드를 사용하십시오.

MSDN - restorehistory

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