SQL Server 2000 Database Restoration

  • Is there any way to check when a database was last restored in SQL Server 2000 through query analyzer.

  • Hi,

    Table "Restorehistory" in MSDB holds this information.

    [font="Verdana"]Renuka__[/font]

  • above poster is right

    USE msdb

    SELECT TOP 100 *

    FROM RESTOREHISTORY WITH (NOLOCK)

    --WHERE destination_database_name IN ('XXX')

    ORDER BY restore_date DESC

    SQLServerNewbieMCITP: Database Administrator SQL Server 2005

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply