join the MSSQLTips community

MSSQLTips.com - your daily source for SQL Server tips

Google
 
Web mssqltips.com

 
Using Page Level Restore as a Disaster Recovery Procedure in SQL Server 2005 - MSSQLTips

MSSQLTips

MSSQLTips.com - your daily source for SQL Server tips
Welcome to MSSQLTips Sign in | Join | Help
in Search

Using Page Level Restore as a Disaster Recovery Procedure in SQL Server 2005

Last post 03-23-2009 4:53 PM by bass_player. 2 replies.
Page 1 of 1 (3 items)
Sort Posts: Previous Next
  • 12-12-2008 12:30 AM

    Using Page Level Restore as a Disaster Recovery Procedure in SQL Server 2005

    This post is related to this tip: Using Page Level Restore as a Disaster Recovery Procedure in SQL Server 2005

    http://www.mssqltips.com/tip.asp?tip=1645

  • 01-04-2009 5:32 PM In reply to

    Re: Using Page Level Restore as a Disaster Recovery Procedure in SQL Server 2005

    I was under the impression that you had to first set PAGE_VERIFY option.

     

    http://msdn.microsoft.com/en-us/library/bb402873(SQL.90).aspx

  • 03-23-2009 4:53 PM In reply to

    Re: Using Page Level Restore as a Disaster Recovery Procedure in SQL Server 2005

    By default, all databases in SQL Server 2005 has the PAGE_VERIFY option set to CHECKSUM so this should be ok. If you have upgraded your databases from SQL Server 2000, the settings will be retained - either TORN_PAGE_DETECTION or NONE, depending on how it was configured prior to upgrade. A recommendation is to set the PAGE_VERIFY option in SQL Server 2005 to CHECKSUM. Just validate that your databases are set to CHECKSUM

    select name, page_verify_option_desc
    from sys.databases
    order by name

Page 1 of 1 (3 items)