Maintenance window and recovery for a large database

Posted by NYSystemsAnalyst on Server Fault See other posts from Server Fault or by NYSystemsAnalyst
Published on 2010-12-21T16:35:21Z Indexed on 2010/12/21 17:55 UTC
Read the original article Hit count: 207

One of our teams is developing a database that will be somewhat large (~500GB) and grow from there (I know 500 Gigs may seem small to many of you, but it will be one of the larger databases in our shop). One of the issues they are grappling with is backing up and restoring the database. Basically, the database will have several "data" tables and one table used for storing images / documents. We need to accomplish the following:

  • Be able to quickly backup and restore only the data tables (sans images) to our test server for debugging and testing purposes.
  • In the event of a catastrophic database failure, restore the data tables only to get most of the application up and running ASAP. Then, restore the images table when possible.
  • Backup the database within the allotted nightly time window (a few hours). My questions are:

Is it possible to accomplish the first two goals while still having the images stored in the same database? If so, would we use filegroups, filestream, or something else? How do other shops backup their databases in a reasonable time window while maintaining high availability? Do you replicate to a second server and backup from there?

© Server Fault or respective owner

Related posts about sql-server

Related posts about backup