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'
Was it helpful?

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top