Question

I need a SQL query to determine when log shipping last occured for a given database. Would this be correct?

SELECT  Max(restore_date)
FROM    msdb.dbo.restorehistory 
WHERE   destination_database_name = 'XXXXXXXXXX' AND
        restore_type = 'L'
Était-ce utile?

La solution

Yes

but

only if you do not restored logs manually last time.

and

better use the procedures at Monitor Instance dedicated to this task

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top