Vous êtes sur la page 1sur 52

SQL Server 2000 Backup and Restore

Published: March 1, 2005 Note: For information on Backup and Restore in SQL Server 2005, see Backing Up and Restoring Databases in SQL Server1 in SQL Server 2005 Books Online. Author: Pankaj Agarwal Published: February, 2005 Summary: This paper discusses the types of backups that are available in SQL Server 2000 and how backup functionality can be used in a disaster recovery plan. It includes general recommendations on how to improve backup and restore throughput and several case scenarios.
On This Page

Introduction Common Terms New Backup and Restore Features in SQL Server 2000 Recovery Models Simple Recovery Model Bulk-Logged Recovery Model Full Recovery Model Partial Database Restore Enhancements to Differential Backups Password-Protected Backup Files Named Log Marks Continuous Log Chain Additional Backup and Restore Information Types of Backups Backup Media Disk Backups Tape Backups Backup Devices Adding Backup History from Backup Files to MSDB Media Sets and Families Virtual Device Interface Permissions Required for Backup and Restore Complete Database Backup Performing Complete Database Backups Restoring Complete Database Backups Restoring a Complete Backup to the Same Database Restoring a Complete Backup to a New Database on the Same Server Restoring a Complete Backup to a New Server Performing a Partial Database Restore Transaction Log Backup Performing Transaction Log Backups through Enterprise Manager Restoring Transaction Log Backups to the Same Server Restoring Transaction Log Backups to a Different Server Restoring Transaction Log Backups to a Point in Time Restoring Transaction Log Backups to a Named Transaction Restoring to a Point of Failure Differential Backup Performing Differential Backup Restore to the Same Server Restore to a Different Server to a New Database File/Filegroup Backup Performing File/Filegroup Backup (Enterprise Manager) Restoring Filegroup Backups if Filegroup Files are Damaged File/Filegroup Differential Backups Backup and Restore of Full-Text Catalogs Backup and Restore of Replicated Databases Snapshot Replication Transactional Replication Merge Replication Set Up Backup Schedules (Maintenance Plan Wizard) Modifying the SQL Server Job Schedule Backup Techniques for Large Databases Backup Infrastructure and System Architecture Software Configuration and Database Architecture About Disaster Recovery Planning

Case Studies Appendix A Database Script for Filegroup Backup and Restore

Introduction
The need to back up databases on a regular basis is a major component of managing any production system. Backups may be used to provide a means of recovery from a disaster situation. Microsoft SQL Server 2000 provides several kinds of backups that may be combined to formulate a customized disaster recovery plan depending on the nature of the data and the disaster recovery requirements. SQL Server 2000 enhances some aspects of the backup and restore functionality that was provided in SQL Server 7. There is also additional functionality that helps individual organizations take full advantage of commands in SQL Server 2000. It is highly recommended that all SQL Server databases be backed up periodically. This provides the best chance of successfully recovering a production environment in the quickest amount of time in case there is a disaster situation. This paper discusses the various kinds of backups that are available in SQL Server 2000 and how this functionality may be used in a disaster recovery plan. The paper also discusses some general recommendations on how to improve backup and restore throughput. Finally, we examine two case studies where we implement the knowledge from previous sections in realworld scenarios. Top Of Page

Common Terms
Data page An SQL Server databases basic data storage structure is 8 KB and is known as a data page. An SQL database may contain thousands of pages. Disaster recovery planning The process of formulating, documenting, and testing the procedures that would be performed if production data in one or more SQL Server databases were to be lost or modified in an unforeseen disaster or malicious attack. Minimally logged operations (bulk load operations) Data movement operations that require minimal logging in the transaction log. These operations include bcp, certain Data Transformation Services (DTS) operations, and SELECT INTO. Depending on the recovery model for a database, any of these operations might either be fully logged or minimally logged. Filegroup A logical grouping of SQL Server database files. By default, a new SQL Server database contains the Primary filegroup. Log sequence number (LSN) The unique number that each operation is stamped with when it is written to the transaction log. A single SQL Server transaction may contain several LSNs. Logical file names The names that are used by SQL Server to identify files within an SQL Server database. Physical file names The name used by the operating system to identify specific files. All SQL Server database files have both a physical and a logical file name. Extent A collection of 8 data pages. Since a data page is 8 KB, an extent is 64 KB. SQL Query Analyzer A graphical tool provided with SQL Server client utilities to query SQL Server databases using the Transact-SQL commands. Transaction A set of modifications that are performed as a single unit of work. A transaction follows the ACID guidelines. For more information on the ACID standard, see Transactions in SQL Server Books Online. Transaction log

A record of modifications performed to a database. The amount of information logged in the transaction log depends on the recovery model for a database. For more information on recovery models, see Recovery Models in the next section of this paper. Tail of transaction log The transactions that have been committed but not backed up since the previous complete or differential database backup or transaction log backup. Transaction undo file File containing information regarding any modifications that were made as part of incomplete transactions at the time the backup was performed. A transaction undo file is required if a database is loaded in read-only state. In this state, further transaction log backups may be applied. Virtual log file (VLF) A logical section within an SQL Server databases transaction log. When performing a truncate of the transaction log, an entire VLF is cleaned out. Top Of Page

New Backup and Restore Features in SQL Server 2000


Top Of Page

Recovery Models
SQL Server 2000 introduces the concept of recovery models for databases. Recovery models are designed to simplify the administration of SQL Server 2000 databases. There are three recovery models in SQL Server 2000Full, Bulk-Logged, and Simple. System databases (including master, MSDB, and tempdb) are set to the Simple Recovery model. All user databases, by default, are created with the Full Recovery model (it should be noted that the Full Recovery model takes affect once a complete database backup is performed). The recovery model may be changed once the database is created. The recovery model for a database incorporates the two most often used settingsTruncate Log on Checkpoint and Select Into/Bulkcopy. Truncate Log on Checkpoint. In previous versions of SQL Server, this setting was selected to automatically truncate the transaction log every time CHECKPOINT is activated for the database. Select Into/Bulkcopy. This setting was used in previous versions of SQL Server to perform non-logged operations. Following are the settings and their relation to the three recovery models. Recovery Model Select Into / BulkCopy Truncate Log on Checkpoint Full Bulk-Logged Simple Top Of Page False True True/False False False True

Simple Recovery Model


This recovery model facilitates the maintenance of a database by making the transaction log virtually maintenance free. There are limitations placed on the recoverability of a database if this recovery model is used. Top Of Page

Bulk-Logged Recovery Model


A database in this recovery model will have minimum logging for bulk import operations. Space allocation and deallocation is only logged for bulk import operations. Point-in-time and point-of-failure recovery may be possible when a database is in Bulk-Logged Recovery model. Top Of Page

Full Recovery Model


SQL Server performs full transaction logging for any bulk load operations if a database is in Full Recovery model. Transaction log backups should be performed at regular intervals for maximum recoverability. This model provides the safest mode of

log backups should be performed at regular intervals for maximum recoverability. This model provides the safest mode of operation for production systems. The following table summarizes the recovery models and backup types available with each recovery model. Recovery Model/ Backup Complete Differential Transaction Log File / Filegroup Simple Bulk-Logged Full Top Of Page Required Required Required Allowed Allowed Allowed Not Allowed Required Required Not Allowed Allowed Allowed

Partial Database Restore


New functionality in SQL Server 2000 provides commands to restore a database backup partially. If a database contains several filegroups, a single filegroup may be recovered using this new functionality. Partial database restore operations provide a means to restore only certain parts of the database, as needed. Top Of Page

Enhancements to Differential Backups


Differential backups have been enhanced in SQL Server 2000. A bitmap of modified extents has been added to the database structure. This bitmap contains a bit for each extent that has been modified since the previous complete backup. This bitmap is referenced when a differential backup is initiated and only modified extents are referenced and backed up. This significantly improves the performance of differential backups in SQL Server 2000. Top Of Page

Password-Protected Backup Files


New functionality has been added to backup functionality to password-protect the backup files. This is in line with the security initiative and helps protect against unauthorized access. Top Of Page

Named Log Marks


SQL Server 2000 introduces the concept of named transactions. Named log marks allow a transaction log backup to be restored up to a particular named transaction. This further enhances the point-in-time restore functionality on the transaction log backups. Top Of Page

Continuous Log Chain


SQL Server 2000 improves the transaction log backups. It now includes database file management functionality such as the addition and removal of database file(s) as logged operations. This improves the manageability of databases in a log shipping environment. Recommended Reading See the following SQL Server Books Online topics: Whats new in SQL Server 20002 Selecting a Recovery Model3 Using Recovery Models4 Top Of Page

Additional Backup and Restore Information


SQL Server provides functionality to back up and restore SQL Server databases to disk or tape medium. Top Of Page

Types of Backups
SQL Server provides several different kinds of backups. A combination of these backups may be used to formulate a robust disaster recovery strategy.

disaster recovery strategy. Backup Type Complete Differential Description Backs up the entire database. Backs up only modified extents since the previous complete backup.

Transaction Log Backs up the active portion and truncates the inactive portion of the transaction log. File / Filegroup Backs up individual files and filegroups within a database. File differential Combines differential backups and file or filegroup backups. Top Of Page

Backup Media
SQL Server databases may be backed up to either a disk or tape media. Backup may be performed through SQL Server Enterprise Manager or a Transact-SQL command. Top Of Page

Disk Backups
A database may be backed up to disk file or a disk backup device. Any database can be backed up to a random disk file at any time. The file may either be initialized or the backup may be appended to an existing backup file. Top Of Page

Tape Backups
A database may be backed up to a local tape drive. SQL Server formats the tape backups using Microsoft Tape Format (MTF). This means that a tape may hold other backups formatted using MTF in conjunction with SQL Server backups. Tape backups provide certain features that are not available when using disk backups. Continuation media If the tape to which the backup is being written fills up, SQL Server Enterprise Manager pops a dialog box and prompts for the next tape (if using the Transact-SQL command, a message is logged to the SQL Server error log to mount the next tape and a retry attempt is made roughly every five minutes to see if a new tape was mounted). This is in contrast to disk backups, where inadequate disk space terminates the backup operation. Restart option If there is a power failure or the server shuts down unexpectedly while the backup/restore is being performed, the operation may be restarted from the point at which it was interrupted. Top Of Page

Backup Devices
A backup device may be created through SQL Enterprise Manager or by using Transact-SQL commands. To create the device through Enterprise Manager 1. Open Enterprise Manager and connect to the server where the backup device needs to be created. 2. Expand the Management folder and right-click Backup to display the shortcut menu shown in Figure 1.

Figure 1: Backup Device through SQL Enterprise Manager 3. Select New Backup Device... to display the dialog box in Figure 2.

Figure 2: New Backup Device Properties Enter a name and location for the backup device. Notice that the Tape option is disabled in the dialog box shown in Figure 2. This is because the computer used in the example does not have a tape drive installed. 4. Click OK when done. This will create the backup device. Once the backup device has been created, it appears under the Management -> Backup tree within SQL Enterprise Manager. 5. To view the properties for the backup device, right-click the device and select Properties. The dialog box shown in Figure 3 appears.

Figure 3: Backup Device Properties 6. If you want to view all backups that have been performed to this device, click View Contents. A backup device may also be created by using a Transact-SQL command through SQL Query Analyzer. Figure 4 illustrates the use of a Transact-SQL command to create a backup device similar to that shown in the previous steps.

Figure 4: Creating a backup device using Transact-SQL Top Of Page

Adding Backup History from Backup Files to MSDB


This section discusses the procedure that may be used to restore the backup history from a single or a set of backup files in case this information is lost or does not exist in MSDB tables. For the purposes of this section, we will assume that we have a complete database backup of a database called TESTDB for which the restore history is to be retrieved and saved to MSDB tables. To restore backup history from backup files 1. Copy the backup files that are to be restored to the relevant SQL Server machine. 2. Open Enterprise Manager and connect to the server where the backups are to be restored. 3. Right-click any database and select All Tasks, then select Restore Database... The Restore Database dialog box shown in Figure 5 is displayed.

Figure 5: Restore backup set information 4. Select the From Deviceradio button. 5. Select the Read backup set information and add to backup historyoption in the Parameterssection. 6. Click the Select Devices...button to add the backup file(s) to the list. The Choose Restore Devices dialog box (Figure 6) appears.

Figure 6: Choose Restore Devices dialog box 7. Click the Add button and select the backup file(s) for which the backup history is to be loaded. 8. Once the files have been selected, click the OKbutton. 9. Click the OKbutton in the dialog box shown in Figure 5. This will initiate the restore of the backup history to the MSDB tables. Note It is important to note that this operation does not physically restore the database for which the files are selected in the above step. 10. Once the backup history is completely loaded, the dialog box shown in Figure 7 is displayed. Click OK to complete the history restore operation.

Figure 7: Backup history restore confirmation dialog box This operation results in the information for TESTDB appearing if a further attempt is made at restoring the database from these backups. Top Of Page

Media Sets and Families


Media sets comprise several individual media. All media in a media set should be of the same type. For example, a 200-GB database might span 3 tapes. The 3 tapes are considered to be a media set. A media family refers to the collection of media used by an individual backup device. For example, if a 2-TB database is backed up using 4 tape drives (with 5 tapes in each drive), each set of 5 tapes is considered to be a media family. Collectively the 20 tapes would be considered a media set.

Figure 8: Media set and family Top Of Page

Virtual Device Interface


Virtual Device Interface (VDI) is the programming interface for the Backup Restore API. It provides function calls to manipulate the backup and restore functionality in SQL Server. VDI is used by several third-party tools that provide capabilities to back up SQL Server databases. For more information on this topic, see Virtual Backup Device Samples in SQL Server Books Online. Top Of Page

Permissions Required for Backup and Restore


Any logon that requires permissions to perform backup or restore operations should be provided membership in the following SQL Server roles:

Server Role : sysadmin DB role : db_backupoperator, dbo_owner Permissions required for performing restore Server role : sysadmin, dbcreator DB role : db_owner

Recommended Reading See the following SQL Server Books Online topics: Backup Devices7 Using Multiple Media or Devices8 Using Media Sets and Families9 Backup Restore Architecture10 Top Of Page

Complete Database Backup


A complete database backup creates a stand-alone image of the entire database. A complete database backup is selfdependent and may be restored to either the same or a new database on the same or a different server. This provides plenty of flexibility at the time when this backup has to be restored. A complete backup may be restored without the need for any other kind of backup. It may also be performed for databases in any recovery model. Restoring a complete database backup typically would be considered a starting point for a disaster recovery situation where the entire database is lost or damaged. It is recommended that a complete database backup be performed at regular intervals for all production databases. It is also recommended that a complete backup should be performed for system databases (including master and MSDB) if there are any changes performed to the SQL Server operating environment such as creating or removing databases, configuring security, creating and modifying DTS packages or scheduled jobs, adding and removing linked servers, etc. Top Of Page

Performing Complete Database Backups


A complete database backup may be performed either through SQL Server Enterprise Manager or by using Transact-SQL

A complete database backup may be performed either through SQL Server Enterprise Manager or by using Transact-SQL commands. Complete backups may also be scheduled to be performed at regular intervals. Scheduling may be done through either SQL Server Enterprise Manager or using Transact-SQL commands. To perform a complete database backup through SQL Server Enterprise Manager 1. Open Enterprise Manager and connect to the server. 2. Expand the Databases folder, then right-click the database that you want to back up.

Figure 9: Backup database through Enterprise Manager 3. Select All Tasks, then select Backup Database... as shown in Figure 9. The dialog box shown in Figure 10 is displayed.

Figure 10: Backup Database dialog box 4. Provide a name for the backup in the Name text box. Leave the Database complete radio button selected since we are performing a complete database backup. 5. Select the Overwrite existing mediacheck box to initialize the destination file or device or select the Append to mediacheck box to append the current backup to existing file or device.

6. To select a destination for the backup, click the Add button. The dialog box shown in Figure 11 is displayed.

Figure 11: Select Backup Destination 7. Select an existing file or enter a new file name. Click OK after selecting a file. 8. Click the Options tab. The options shown in Figure 12 are presented.

Figure 12: SQL Server Backup Options 9. Select the Verify backup upon completioncheck box to verify the backup upon completion. (Please see SQL Server Books Online for more information regarding the RESTORE VERIFYONLY command.) Description of other fields Remove inactive entries from transaction log truncates the transaction log while performing the backup. If this setting is not checked, SQL Server uses the NO_TRUNCATE option for the backup. This option is available only while performing transaction log backup. Check media set name and backup set expiration- verifies the selected media for the provided media set name to prevent accidental overwrites. Eject tape after backup ejects the tape from the drive when the backup completes. Backup set will expire specifies when the backup expires and is no longer restorable. Initialize and label media erases and labels media sets. Although this option is available for all tape backups, it is most useful when there are multiple tapes forming a media set.

10. Once all the necessary options are selected, either click the OK button to start performing the backup, or check the Schedule check box to schedule this operation for periodic execution. If the backup is performed immediately, the Backup Progress dialog box (Figure 13) is displayed while the backup is being performed. If the backup operation should be scheduled, see Modifying the SQL Server Job Schedule later in this paper for more information on how to modify the default schedule.

Figure 13: Backup Progress dialog box Upon successful completion of the backup, the informational dialog box shown in Figure 14 is displayed.

Figure 14: Backup complete confirmation The above functionality can be accomplished through Transact-SQL commands executed from SQL Query Analyzer. An example of such a command is illustrated below.

BACKUP DATABASE northwind TO DISK = 'd:\backups\northwind\nwind.bak'

For more information on the Transact-SQL commands, see BACKUP (T-SQL) in SQL Server Books Online. Top Of Page

Restoring Complete Database Backups


A complete database backup may be restored to the same or a new or different database on the same (or a different) server. The restore operation may be initiated either through either SQL Server Enterprise Manager or the Transact-SQL command window. It is highly advisable to restore complete database backups at regular intervals, as this is the only means that is currently available to verify the restorability of an SQL Server backup. Top Of Page

Restoring a Complete Backup to the Same Database


To restore a complete database backup to the same database 1. Open SQL Server Enterprise Manager and connect to the server where the backup is to be restored.

Figure 15: Restore database through Enterprise Manager 2. Right-click the database and select All Tasks, then select Restore database (as shown in Figure 15). The Restore Database dialog box (Figure 16) is displayed.

Figure 16: Restore Database dialog box 3. From the list of databases, select the database for which the backup has to be restored. A list of all backups performed for the selected database is displayed in the Parameters section of the Restore Database dialog box. This information is collected from the history tables in the MSDB database. 4. From the list of backups, select the backup to restore, then click the Properties button to display the Backup Set Properties dialog box shown in Figure 17.

Figure 17: Backup Set Properties dialog box The dialog box displays backup properties including backup type, size (in KB), start and finish dates, server name, and media description. 5. In the Backup Set Properties dialog box, click OK. 6. In the Restore Database dialog box (Figure 18), click the Options tab.

Figure 18: Restore Database Options The Options tab in the Restore Database dialog box provides options to select the final restore state, change the file name, and set tape options for the restore operation. 7. Select the appropriate settings in this dialog box.

7. Select the appropriate settings in this dialog box. Description of fields Eject tapes after restoring each backup ejects the tape when the restore operation completes if a tape restore is being performed. Prompt before restoring each backup displays a dialog box after each backup is restored successfully. This option may be used when restoring multiple backups. Force restore over existing database forces the files for the existing database to be initialized. This option should be used with caution as it erases the data that exists in the selected database before starting the restore operation. Restore As shows the original and target physical file names for the database that is being restored. Recovery completion state determines the final state of the restored database. Undo file a file required by SQL Server to track incomplete transactions if the backup is restored in standby state. 8. To start the restore operation, click OK. The Restore Progress dialog box (Figure 19) is displayed while the restore operation executes.

Figure 19: Restore Progress dialog box 9. When the restore operation completes, the dialog box shown in Figure 20 is displayed. To close it, click OK.

Figure 20: Restore database complete confirmation Top Of Page

Restoring a Complete Backup to a New Database on the Same Server


A new database may be created while restoring a complete database backup. The new database may be created on the same server where the original database was located, or on a different server. In either case, there are several restrictions placed on the database if it is created in this manner: Physical file structure may not be modified while restoring Logical file names may not be changed Physical files created must be the same size as when the backup was performed If you intend to create a new database, as part of the restore operation, on the same server where the original database still resides, follow this procedure. To restore a complete backup to a new database on the same server 1. Open SQL Server Enterprise Manager and connect to the server where the backup is to be restored. 2. Right-click any database and select All Tasks, then select Restore Database to open the dialog box shown in Figure 21.

Figure 21: Restore Database As dialog box 3. In the Restore as database: text box, enter the name of the new database that you wish to create. 4. Under Parameters, select the database for which you intend to restore the backups (in the Show backups of database list box). A list of backups for the database are displayed in window. 5. Select the backup that you would like to restore and click Properties to verify the properties for that backup. See the Properties dialog box in Figure 17 for an illustration. 6. Click the Options tab.

Figure 22: Restore Database As Options dialog box

Figure 22: Restore Database As Options dialog box 7. If necessary, modify the file name and location of the database files listed in the Restore Aslist. The first part of the file name is used as the logical name for the respective file. In the example in Figure 22, the first file will have the physical file name of nwind_new_log.ldf and the logical name of nwind_new_log. 8. Select all the other options from this dialog box as necessary. For an explanation of these options, see Figure 18. 9. To start the restore operation, click OK. A progress dialog box is displayed and when the restore operation is finished, a confirmation dialog box is displayed. A new database called nwind_new is added to the Enterprise Manager window. This functionality can also be accomplished by using Transact-SQL commands. Assuming that the database backup file name is c:\backups\northwind\nwind.bak, the following command will restore the database to nwind_new:

RESTORE DATABASE nwind_new FROM DISK = 'c:\backups\northwind\nwind.bak' WITH MOVE 'northwind' TO 'd:\Program Files\Microsoft SQL Server\Data\nwind_new.mdf' MOVE 'northwind_log' TO 'd:\Program Files\Microsoft SQL Server\Data\nwind_new_log.ldf'

Top Of Page

Restoring a Complete Backup to a New Server


SQL Server databases may be backed up on one server and restored to another server. If the target database does not exist on the second server, it may be created before the restore is initiated. However a new database can be created while restoring the backup. If a new database is created while restoring the backup, all the restrictions mentioned in Restoring a Complete Backup to a New Database on the Same Server apply. The steps in this section demonstrate one of the many ways that someone may use to restore the database onto a different server. Another means of achieving this same functionality would be to restore the backup history using the procedure explained in Adding Backup History from Backup Files to MSDB and then using the procedure listed in Restoring a Complete Backup to a New Database on the Same Server using the SQL Enterprise Manager GUI. To restore a database backup to a different server to a new database 1. Copy the database backup file to the target machine or share it on the network so that it is accessible from the server. 2. Open Enterprise Manager and connect to the server to which the backup is to be restored. 3. Right-click any database and select All Tasks, then select Restore Database to display the Restore Database dialog box shown in Figure 23.

Figure 23: Restore from device dialog box

Figure 23: Restore from device dialog box 4. Enter the name of the new database that the backup process will create and restore the backup to, in the Restore as database: list box. 5. Select the From deviceradio button. 6. Click the Select Devices... button.

Figure 24 : Choose Restore Devices dialog box 7. In the Choose Restore Devicesdialog box, select either the Disk or the Taperadio button. In the dialog box in Figure 24, the Tape option is dimmed (unavailable) because the backup device does not have a tape drive configured. For the purposes of this example we will assume that we are restoring the backup from a disk device. 8. Click the Add button to display the dialog box shown in Figure 25.

Figure 25: Choose Restore Destination dialog box 9. Enter the file name of the backup file that is to be restored. If the file exists on a network share, provide the UNC share name in the File name text box. Note It is recommended that the backup be copied to the server and a local path be used to restore the database.

10. Click the OKbutton. The Choose Restore Devicedialog box, displayed in Figure 24, is now updated with the selected file. 11. Click the OK button to return to the Restore Databasedialog box. The Devices list is now updated with the file selected in the previous step. 12. Click the Options tab and select appropriate options for the restore operation. The file names of the physical files may be changed at this time. For more information on the fields in this dialog box, see steps 6 and 7 in Restoring a Complete Backup to a New Database on the Same Server.

13. Click OK in the Restore Database dialog box. This starts the restore process. Progress and confirmation dialog boxes are displayed as SQL Server processes and completes the restore of the database. 14. Click OKin the confirmation dialog box. This restore operation may also be accomplished through Transact-SQL commands. The command would be similar to the one demonstrated in Restoring a Complete Backup to a New Database on the Same Server. Top Of Page

Performing a Partial Database Restore


Partial Database Restore is newly added functionality in SQL Server 2000. It allows for individual filegroups to be restored to new databases. This functionality is implemented in SQL Server using new options for the RESTORE Transact-SQL command. For a better understanding of filegroups, see File/Filegroup Backup later in this paper. A filegroup may be restored partially only from a complete backup. A file/filegroup backup does not contain transaction log backup and hence cannot be used to restore the particular filegroup partially. All other filegroups in the database (except Primary) are marked OFFLINE when this restore mechanism is used. It should be noted that all files in the Primary filegroup are always restored in any Partial Database Restore situation. Performing a Partial Restore For the purposes of this demonstration we will assume that: We have a database called files that has two filegroupsfg1 and fg2 (see the script in Appendix A). Database files has a complete backup stored in file called d:\backup\files.bak We need to restore the contents of filegroup fg2 to a new database called files_fg2. Open SQL Query Analyzer and perform the query shown in Figure 26 to get the names of files that constitute the complete backup.

11

Figure 26: RESTORE FILELISTONLY Results We will need to restore files belonging to the Primary and fg2 filegroups. Execute the command shown in Figure 27 from the SQL Query Analyzer window.

12

Figure 27: Partial database restore results Apply any further Transaction log or differential backups that might be available. Once the database is recovered, it may be accessed in a normal manner. All other filegroups in the database are marked OFFLINE. Any attempts to perform queries on objects that reside on other filegroups in the database generate the error shown in Figure 28.

13

Figure 28: Error generated when querying an OFFLINE filegroup Recommended Reading See the following SQL Server Books Online topics: RESTORE14 RESTORE FILELISTONLY15 Partial Database Restore Operations16 Database Backups17 See the following Microsoft Knowledge Base article: Q221465 INF: Using the WITH MOVE Option with the RESTORE Statement http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q22146518 Top Of Page

Transaction Log Backup


An SQL Server database consists of two componentsdata file(s) and transaction logs. A transaction log captures the modifications made to the database. An SQL Server database must have at least one transaction log file. A simple transaction may place several records in the transaction log. Each of these records is known as a log record and is assigned a unique identification number known as the log sequence number. Log records that belong to the same transaction are linked together through the log sequence number. If SQL Server service shuts down unexpectedly, upon restart the recovery process examines the entries in the transaction

If SQL Server service shuts down unexpectedly, upon restart the recovery process examines the entries in the transaction log and if there are transactions that have not been rolled forward completely, the recovery process rolls back the changes performed as part of these incomplete transactions. This operation is extremely important as it forms the basis of transactional recovery at startup. Entries in the transaction log are also used if transactional replication is configured for the specific database. A transaction log backup backs up all transactions since either the previous transaction log backup, or the complete database backup if there have been no transaction log backups performed for the database in the past. This backup may then be used to apply the backed-up changes, in case disaster recovery is required. Transaction log backups may only be applied to a database in an unrecovered state. A database may be in an unrecovered state if it is being restored from a set of backups as part of a disaster recovery procedure, or if it is configured as a standby database on a warm backup server. A transaction log backup also truncates the inactive portion of the transaction log, unless the database is configured as a Publisher in transactional replication and there are transactions pending propagation to Subscribers. Each transaction log backup contains a First and Last log sequence number (LSN). Consecutive transaction log backups should have sequential LSNs for the boundary log records. These LSN values may be examined using the RESTORE HEADERONLY command. If LastLSN from the previously restored transaction log backup does not match the FirstLSN from the backup that is currently being restored, the restore operation fails with the following error: Server: Msg 4305, Level 16, State 1, Line 1 This backup set cannot be restored because the database has not been rolled forward far enough. You must first restore all earlier logs before restoring this log. If the above message is generated while restoring a particular transaction log backup, which is part of a set of transaction log backups that are to be restored, any attempts to restore further transaction log backups will fail with this message. There could be several reasons for consecutive transaction log backups being out of sequence. Some of the most common reasons noted from support experience have been: The database recovery model has been changed to Simple and back to either Full or Bulk-Logged. Switching the recovery mode to Simple causes the transaction log to be truncated. Another transaction log backup was performed between the previous successfully restored backup and the one generating this message. The transaction log was manually truncated between the two backups. The database was in Bulk-Logged recovery model and non-logged operations were performed. Transaction log backups are not allowed for databases in Simple Recovery model. While in Simple Recovery model, a databases transaction log is truncated every time a CHECKPOINT is invoked for the database. Transaction log backups provide the possibility of performing a point-in-time restore or point-of-failure restore. Top Of Page

Performing Transaction Log Backups through Enterprise Manager


To perform a transaction log backup 1. Open SQL Enterprise Manager. Connect to the server and expand Databases. 2. Right-click the database for which a transaction log backup has to be performed and select All Tasks, then select Backup database... The dialog box shown in Figure 29 is displayed.

Figure 29: Transaction Log Backup 3. You can enter a name for the backup in the Name text box and a description for this backup in the Descriptiontext box. These two fields are optional and may be left blank. 4. To perform a transaction log backup, select the Transaction log radio button. 5. Select a destination for the backup. This could be either an SQL Server backup device, tape, or a disk file. For the purposes of this example, we have selected a disk file called d:\backups\nwind\nwind_log.bak. For more information, see the procedure in Performing Complete Database Backups in this paper. 6. To remove any previous files with this name and create a new file, select the OverwriteExisting Mediaradio button. 7. Check the Schedulecheck box if this operation has to be scheduled for periodic operation. For more information on how to modify the schedule for an operation, see Modifying the SQL Server Job Schedule in this paper. 8. To view and, if necessary, modify the transaction log backup options, click the Optionstab.

Figure 30: Transaction Log Backup Options For more information on the fields in the Options tab, see Figure 9. 9. Once all the options have been selected, click the OKbutton to start the backup. A progress dialog box is displayed while the backup is being performed. When the backup is finished, a confirmation dialog box is displayed. 10. Click OKin the confirmation dialog box to complete the backup operation. Top Of Page

Restoring Transaction Log Backups to the Same Server


As mentioned previously, to restore a transaction log backup, a complete backup must be restored in an unrecovered state. For the purposes of this example, we will continue with the example Restoring a Complete Backup to a New Database on the Same Server where a new database called Nwind_New was created from a backup of Northwind database. For this example we would have to select the Leave Database non-operational but able to apply further transaction log backups option under the Leave Database Operational setting when restoring the complete backup. This option is displayed in Figure 18. To restore transaction log backups to the same server 1. Open Enterprise Manager, connect to the server, and expand Databases. 2. Right-click Nwind_New database and select All Tasks, then select Restore Database... The dialog box shown in Figure 31 is displayed.

Figure 31: Restore log to new database 3. In the Show backups of database list, select Northwind. This updates the information displayed in the window. It may be noticed that the transaction log backup corresponding to the complete backup that was loaded initially to create the NWIND_NEW database is selected by default. 4. You can view properties for the log backup by selecting the Northwind Log Backup and clicking the Propertiesbutton. 5. To view and, if necessary, modify any option relating to the restore operation, click the Options tab. For a detailed description of the options available on this tab, see the descriptions provided for Figure 18. 6. To start the restore of the transaction log, click OK. A progress dialog box is displayed while the backup is being restored. When the restore finishes successfully, a confirmation dialog box is displayed. 7. To complete the restore operation, click OK in the confirmation dialog box. Top Of Page

Restoring Transaction Log Backups to a Different Server


Since a transaction log backup may only be applied if a database is in an unrecovered state, if the restore operation is being performed on a different server, the backup history does not exist. In this case, either Enterprise Manager or Transact-SQL commands could be used to perform the restore of the complete database backup. Alternatively, the backup history could be loaded into the new servers MSDB database using the procedure described in Adding Backup History from Backup Files to MSDB later in this paper. For the purposes of this paper, we will consider this procedure as performed through SQL Enterprise Manager. We will continue this example from the example provided in Restoring a Complete Backup to a New Server later in this paper. To restore transaction log backups to a different server 1. Open SQL Server Enterprise Manager and connect to the server. 2. Expand Databases. Right-click the database for which the transaction log backup is to be restored and select All Tasks, then select Restore Database... The dialog box shown in Figure 32 is displayed.

Figure 32: Restore transaction log backup to new server 3. To select the backup file(s) containing transaction log backup(s) to be restored, click the Select Devices... button. For more information on this step, see the procedure explained for Figure 18. 4. Select the Transaction logradio button under Restore backup set. 5. Click the Optionstab and select appropriate options for the restore. If this is the final transaction log backup, select the Leave database operational. No additional transaction logs can be restoredoption. If there are further backups to be applied after this one, select one of the other two options for the Recovery completion state. 6. To start the restore operation, click OK. Progress and confirmation dialog boxes are displayed while the backup is being restored and when the backup is restored. 7. To complete the restore, click OKin the confirmation dialog box. Top Of Page

Restoring Transaction Log Backups to a Point in Time


Transaction log backups may be restored to a point-in-time. This functionality is available only through the use of transaction log backups. There are certain restrictions placed upon using point-in-time recovery as follows: Point-in-time recovery may not be used in conjunction with file/filegroup restore. The tail of transaction log has to be applied in full when recovering file/filegroups from file/filegroup backups. For more information, see File/Filegroup Backups later in this paper. Point-in-time recovery is only available as the last step in a recovery situation. This means that no further backups may be restored if point-in-time recovery is used. The database is recovered immediately even if the NORECOVERY or STANDBY option is specified. Point-in-time recovery is implemented using the STOPAT option with the RESTORE LOG Transact-SQL statement. The SQL Enterprise Manager dialog box shown in Figure 33 is used to perform a point-in-time restore. This dialog box is displayed when the Point in time restorecheck box is selected in the dialog box shown in Figure 28.

Figure 33: Point In Time Restore dialog box Select the appropriate date and time to stop the transaction log restore operation through this dialog box. Once the date time is selected, click OK to continue with the restore operation. Note Since this procedure results in a different ending transaction after the restore is complete, a full database backup should be performed before any further transaction log backups. Top Of Page

Restoring Transaction Log Backups to a Named Transaction


SQL Server 2000 provides functionality to restore a transaction log backup up to and including or excluding a certain transaction. This functionality has been implemented with new options for the RESTORE LOG commandSTOPATMARK and STOPBEFOREMARK. Restoring a transaction log to a named transaction is bound by the same restrictions as point-in-time restore. Additionally, recovery to a named transaction is available only if the specific transaction was started with a name. The following code demonstrates how to create a simple named transaction that updates the Customers table in the Northwind database.

BEGIN TRAN Demo UPDATE Customers SET CITY = Hamburg WHERE NAME = Tony Munitz COMMIT TRAN Demo

If this transaction is the offending transaction and a customer would like to perform recovery on the database, excluding this transaction and any other transactions that were performed after this transaction, we could use the following command:

RESTORE LOG NorthWind_Test FROM DISK = 'd:\backups\TLOG_23.BAK' WITH STOPBEFOREMARK = 'Demo'

Note STOPBEFOREMARK and STOPATMARK options may be used with the AFTER clause to stop recovery after a given datetime for a named transaction. Top Of Page

Restoring to a Point of Failure


Under certain circumstances it may be possible to recover the database to a point where it failed. Recovery to a point of failure is available only when the database is in the Full or Bulk-Logged Recovery models. Restoring a database to the point of failure requires the following backup components: 1. A backup of the tail of transaction log. 2. A complete database or file/filegroup backup. Optionally we may also need differential or file differential backups. 3. A sequence of all transaction log backups from the oldest complete (or file/filegroup backup) or the latest differential (or file/filegroup differential) backup restored. Step 1: Backup of the tail of transaction log To perform a backup of the tail of transaction log if database files are damaged, see the procedure in article Q25381719 in the Microsoft Knowledge Base. As an example, the following command may be used to back up the log when database files are damaged:

are damaged:

BACKUP LOG <dbname> TO DISK = 'd:\backup\Tail_TLOG.bak' WITH NO_TRUNCATE

Step 2: Restore complete database or file/filegroup backup If the damaged files were backed up as part of a file/filegroup backup, locate the latest file/filegroup backups. If no filegroup backups have been performed or if they are not available, locate the most recent complete backup. If files from only a certain filegroup are damaged, and filegroup backups along with transaction log backups exist for the damaged filegroup, restore the filegroup backup. If complete database is damaged or the filegroup backups do not exist for the damaged filegroup(s), restore the most recent complete backup, as explained in Complete Database Backup earlier in this paper. Restore any further differential backups that may have been performed after either the complete backup or the file/filegroup backup. Step 3: Apply all transaction log backups If in the previous step a complete backup was restored, restore all transaction log backups performed after the respective complete backup and apply the tail of transaction log performed in step 1. If file/filegroup backup was restored in the previous step, apply all transaction log backups following the latest file/filegroup or differential file/filegroup backup. Complete the restore process by applying the tail of transaction log backup in step 1. Recommended Reading See the following SQL Server Books Online topic: Recovering to a Named Transaction20 Top Of Page

Differential Backup
A differential backup backs up only modified extents since the last complete backup. By definition, differential backups are cumulative. The most recent differential backup contains all changes from all previous differential backups performed since the most recent complete database backup. Differential backup functionality has been enhanced in SQL Server 2000. SQL Server 2000 uses a bitmap that contains one bit for each extent in a database. This bit is set to 1 if any pages within that particular extent have been modified since the previous complete backup. When a differential backup command is issued, SQL Server examines this bitmap. It accesses only the extents that are flagged as having been modified through this bitmap and writes them to a backup file or device. This functionality greatly improves the performance of differential backups. Differential backups may be considered as an alternative for databases that are large and are modified infrequently. These would include data warehouse type of databases. Differential backups have several limitations: They do not provide point-in-time restore capabilities. Differential backups may not be restored by themselves. They may only be restored after a complete database backup is restored. You can only perform a full backup of the master database. Use BACKUP DATABASE to back up the entire master database. Differential database backups may not be performed on the master database. If an attempt is made to perform a differential backup on the master database, the following error is raised: Server: Msg 3024, Level 16, State 1, Line 1 Differential backups are not allowed for the master database since they require that complete backups be applied without recovery as the first step. When restoring the master database, restore without recovery is not allowed. It should be noted that although differential backups may provide fast backup times in some situations, using them with highly active OLTP databases may result in backup times that may be comparable to complete database backups. As mentioned before, differential backups back up only extents for which any pages have been modified. If the database activity is such that 80-90% of extents have been modified, the time that a differential database backup may take may be very close to the complete backup. Top Of Page

Performing Differential Backup

Performing Differential Backup


To perform a differential backup 1. Connect to the server and expand Databases. 2. Right-click the database and select All Tasks, then select Backup Database... The dialog box shown in Figure 34 is displayed.

Figure 34: Differential database backup settings 3. In the Database list box, select the database name for which to perform a differential backup. Optionally, enter a name in the Name text box and/or description for the backup in the Description text box. 4. To perform the differential backup, select the Database differentialoption. 5. Enter a backup file name following the steps outlined in Performing Complete Database Backups. 6. Click the Options tab and select appropriate options for the backup operation. 7. To start the backup operation, click the OK button. This operation may also be scheduled for periodic execution by checking the Schedule check box. For more information on modifying the default schedule for a job, see Modifying the SQL Server Job Schedule. While the backup operation is progressing, a progress dialog box, similar to the one in Figure 13, is displayed. Once the backup completes successfully, a confirmation dialog box, similar to the one shown in Figure 14, is displayed. 8. To complete the backup operation, click OK in the confirmation dialog box. This task may also be achieved through Transact-SQL commands. The following command would perform the same operation as in the previous procedure:

BACKUP DATABASE Northwind TO DISK = 'D:\backups\nwind\nwind_diff.bak' WITH DIFFERENTIAL

Top Of Page

Restore to the Same Server


For the purposes of this section, we will continue from the complete database restore performed in Restoring a Complete Backup to the Same Database. The only difference would be that we would need to select the Leave database nonoperational but able to restore additional transaction log backups option in the Recovery completion section in the Options tab on the dialog box displayed in Figure 18.

Options tab on the dialog box displayed in Figure 18. To restore to the same server 1. Open Enterprise Manager and connect to the server. 2. Right-click the database for which the differential backup is to be restored and select All Tasks, then select Restore Database... to display the dialog box shown in Figure 35.

Figure 35: Differential database restore settings 3. In the Parameters section, select Northwind database in the Show backups for databaselist box, since this is the source database for which the backups are to be applied. 4. Select the time when the backup was performed in the First backup to restore list box. The window below this list is now refreshed with all the backups that have been performed from the selected entry in Step 4. In this particular case, there is a single complete backup and a single differential backup. 5. Since the complete backup has already been restored, select only the differential backup in the list. Database properties may be viewed by selecting the backup and clicking the Propertiesbutton. 6. Click the Options tab and select appropriate options. For more information on these options, see the descriptions listed for Figure 18. For the purposes of this demo, we will assume that the database needs to be recovered upon successfully applying the differential backup. 7. To start the restore operation, click the OK button. A progress dialog box similar to the one shown in Figure 19 is displayed while the restore operation is progressing. Upon successful completion of the restore operation, a confirmation dialog box, similar to the one displayed in Figure 20, is displayed. 8. To complete the restore operation, click the OK button. The above operation may also be carried out by using the following Transact-SQL command:

RESTORE DATABASE Nwind_New FROM DISK = 'd:\backups\nwind\nwind_diff.bak' WITH RECOVERY

Top Of Page

Restore to a Different Server to a New Database


The procedure to restore a differential backup to a different server differs from the steps explained in Restore to the Same

The procedure to restore a differential backup to a different server differs from the steps explained in Restore to the Same Server in the Differential Backup section in this paper because the backup history does not exist. Another means to have the database restored to a different server would be to load the backup history for this database using the procedure described in Adding Backup History from Backup Files to MSDB and then use the SQL Enterprise Manager GUI to restore the backup using the procedure explained in Restoring a Complete Backup to a New Database on the Same Server. For the purposes of this example, we will assume that a complete backup has been restored without recovery. See the procedure explained in Restoring a Complete Backup to a New Database on the Same Server; however, select the Leave Database Non-operational but able to restore additional transaction logs radio button shown in the dialog box in Figure 22. To restore to a different server to a new database 1. Open Enterprise Manager and connect to the server. 2. Expand databases. Right-click the database to which the differential backup has to be applied, and select All Tasks, then select Restore Database... The dialog box shown in Figure 36 is displayed.

Figure 36: Restore differential backup to new database settings 3. In the window that is displayed, select the From device option in the Restore section. 4. Add the backup device in the Deviceslist following the procedure explained for Figure 24. 5. Select Database differentialunder Restore backup set. 6. Click the Option tab and select appropriate options for the restore operation. 7. To start the restore operation, click the OK button. A progress dialog box is displayed while the restore is being performed. When the restore completes, a confirmation dialog box is displayed. 8. To complete the restore operation, click OK in the confirmation dialog box. Top Of Page

File/Filegroup Backup
SQL Server organizes a database in several files. By default, a new database is created with one data file and one log file. Other data files may be added either while creating the database or once the database is operational. The database files for SQL Server typically will have .mdf or .ndf file extensions. Ideally, only the first database file that SQL Server creates should have the .mdf file extension. This is a special database file since it contains a database header and all the system tables. All other database files should ideally be given an extension of .ndf.

A filegroup is a logical grouping of SQL Server database files. By default, SQL Server creates a filegroup called Primary. SQL Server adds the first database file (with the extension of .mdf) to the Primary filegroup. Other filegroups may be created at the time the database is created or after the database has already been created. Database files should be added to the filegroup at the time they are created. Once a file has been created and added to a database, the filegroup that it belongs to may not be modified. SQL Server provides the functionality to back up individual files/filegroups within a database. Note A file/filegroup backup does not back up the transaction log portion of the database. This is a significant difference between file/filegroup backup and complete backup. Hence a filegroup backup cannot be used as the first step in a recovery situation. File/filegroup backups may be used to restore the individual file/filegroup if some or all of the files within the respective filegroup are damaged. The following restrictions are enforced when using file/filegroup backups: A file/filegroup backup may only be restored to the same database it was backed up from. All transaction log backups (including the tail) for the database should be available and restorable. It is implied that this would not be possible to do on a database that is in Simple Recovery model. Point-in-time recovery is not permitted when restoring file/filegroup backups. All transaction log backups have to be restored in their entirety. Top Of Page

Performing File/Filegroup Backup (Enterprise Manager)


To create the database used in the examples in this section, use the script provided in Appendix A. To perform a file/filegroup backup 1. Open Enterprise Manager and connect to the server where the database resides. 2. Right-click the database and select All Tasks, then select Backup database. The dialog box shown in Figure 37 is displayed.

Figure 37: File/filegroup backup general settings 3. Select the File and filegroup radio button in the Backup section of the dialog box. Click the ellipses button next to this option. This opens the dialog box shown in Figure 38.

Figure 38: Specify file/filegroup to back up 4. In the Specify Filegroups and Filesdialog box, select the files/filegroups that you would like to back up. For the purposes of this example, we will back up filegroup fg1. Click the OKbutton once the files/filegroups have been selected. 5. Click the Addbutton in the SQL Server Backupdialog box. To add the destination file for the backup, follow the steps for Figure 11. 6. Click the Optionstab in the SQL Server Backupdialog box. Select options as necessary. For more information on the options in this dialog box, see the explanation for Figure 12. 7. When you are ready to perform the backup, click the OK button. A progress dialog box is displayed while SQL Server performs the backup. When the backup finishes successfully, a confirmation dialog box is displayed. 8. Click the OK button in the confirmation dialog box. Filegroup backups may also be accomplished with Transact-SQL commands. The above functionality could also have been achieved by using the following Transact-SQL command:

BACKUP DATABASE files FILEGROUP = 'fg1 ' TO DISK = 'd:\backups\files\fg1.bak' WITH INIT

Top Of Page

Restoring Filegroup Backups if Filegroup Files are Damaged


For this section we will assume that the disk where the database files for filegroup fg1 were stored was damaged and we lost both files for this filegroup. To restore filegroup backups if files are damaged 1. Open an SQL Query Analyzer window and connect to the server where the files database resides. 2. Select master database from the list box and enter the command shown in Figure 39. (If this step is not possible due to damage to the transaction log, the entire database must be restored from the complete backup, and then all transaction log backups should be restored to bring the database up to the point of the last successful log backup.)

21

Figure 39: Perform backup of tail of transaction log 3. Right-click the files database and select All Tasks, then select Restore Database...

Figure 40: Restore file/filegroup backup 4. Select the Filegroups or files radio button. 5. Make sure that the files database is selected in the Show backups of database: list box. 6. Select the Select a subset of backup setscheck box. The Filter Backup Sets dialog box shown in Figure 41 is displayed.

Figure 41: Filter Backup Sets dialog box 7. In the Filter Backup Sets dialog box, select Only backup sets of the following filegroups and files: 8. Check the fg1 filegroup in the list of files/filegroups that is displayed. Notice that if a filegroup is selected, all the files belonging to that filegroup are selected automatically. 9. Click the OK button in the Filter Backup Setsdialog box. The list of backups for this database, displayed in Figure 40, is now updated to meet the selected criteria. The latest backup should now be selected in the displayed list.

Figure 42: Restore file/filegroup dialog with selected backups 10. Click the Options tab and select options as necessary. For more information on the options available while restoring, see the explanation for Figure 18.

11. To start the restore operation for the filegroup, click OK. 12. Once the filegroup is restored successfully, repeat the process and restore all the transaction log backups, selecting the tail that we backed up in Step 2 as the last log that is restored. This completes the entire process of restoring the filegroup fg1 that was lost in a disaster. Top Of Page

File/Filegroup Differential Backups


Differential backups may be combined with file/filegroup backups to back up only the modified extents within an SQL Server database file or filegroup. These backups may decrease the recovery time in disaster situations where only certain file/filegroups are lost. The latest file/filegroup differential backup contains all changes from all previous file/filegroup differential backups, since they are cumulative in nature. Transaction log backups performed after the latest file/filegroup differential backups are only required in this situation. File differential backups have the following restrictions: They are allowed only in conjunction with file/filegroup backups. They are not allowed for databases that use the Simple Recovery model. They require all transaction log backups (just like file/filegroup backups), including the tail of transaction log. It is not recommended that file differential backups be used with differential backups, as explained in the previous section of this paper. Note It is highly recommended that customers familiarize themselves with file/filegroups and the backup options associated with file/filegroups before planning or implementing filegroups in production databases. Performing a filegroup differential backup As previously mentioned, file/filegroup differential backups are available only in conjunction with file/filegroup backups. Consider a database, called FilegroupsDB that has a filegroup called fg2, for which we have performed a backup of filegroup fg2. The following commands demonstrate how we can perform a filegroup and a filegroup differential backup for such a database.

BACKUP DATABASE FileGroupsDB FILEGROUP = 'fg2' TO DISK = 'd:\backups\filegroupsdb\fg2\fg2_complete_1.bak' BACKUP DATABASE FileGroupsDB FILEGROUP = 'fg2' TO DISK = 'd:\backups\filegroupsdb\fg2\fg2_complete_1.bak' WITH DIFFERENTIAL

Restoring filegroup differential backups The procedure is similar to restoring the file/filegroup backups. The only difference is that now we apply the file/filegroup differential backup following the file/filegroup backup. The steps in a typical recovery situation where a particular filegroup is lost would include: 1. Back up the tail of the transaction log. 2. Restore the filegroup backup and recreate the lost files. 3. Apply the latest filegroup differential backup for the specific filegroup. 4. Apply all transaction log backups following the filegroup differential backup. 5. Apply the tail of the transaction log performed in step 1. Recommended Reading See the following SQL Server Books Online topics: Using File Backups22 File Differential backups23 See the following Microsoft Knowledge Base articles: Q253817 INF: How to Back Up Last Transaction Log When Files are Damaged24 Q281122 INF: Restore File and Filegroup Backups in SQL Server25

Q281122 INF: Restore File and Filegroup Backups in SQL Server25 Top Of Page

Backup and Restore of Full-Text Catalogs


Full-text searching in SQL Server is implemented using the Microsoft Search service. Full-text indexes are stored outside of SQL Server database files. Full-text indexes cannot be backed up by using the Transact-SQL commands or Enterprise Manager. Recommended Reading The following Knowledge Base article discusses the procedure to back up and restore full-text catalogs used by SQL Server. Q240867 INF:How to Move, Copy, and Back Up Full-Text Catalog Folders and Files26 The following white paper discusses the details regarding disaster recovery options for full-text indexes in SQL Server. SQL Server 2000 Full-Text Search Deployment White Paper27. See the following SQL Server Books Online topics: Database Backups17 Full-Text Indexing Support28 Full-Text Indexes29 Full-Text Catalogs and Indexes30 Full-Text Search Recommendations31 Top Of Page

Backup and Restore of Replicated Databases


This section covers the backup and restore implications and requirements for SQL Server databases that participate in replication. It is not in the scope of this section to discuss the replication topologies. Please see the recommended reading at the end of this section to gain more knowledge regarding these topologies. It is highly recommended that for any recovery strategy involving replication, a script should be generated for the replication topology at the time the replication environment is set up and each time it is changed. This script may be generated by using SQL Enterprise Manager. The script should be stored with other backup files. To script replication 1. Open SQL Enterprise Manager and connect to the Publisher server. 2. Right-click the Replication folder and select Generate SQL Script. It should be noted that when restoring a replicated database from backup to a new server name or a new database name, all replication settings are lost. Use the KEEP_REPLICATION flag to preserve the replication settings during the restore process. For more information on this setting, see RESTORE in SQL Server Books Online. 3. Generally it is considered a good practice to let the replication agents finish the current replication workload, so that Publisher and all Subscribers are in sync. Once the Subscribers are in sync, perform the following steps: a. Stop the distribution/merge agent(s). b. Back up the Publisher, Distributor, Subscriber(s), and other databases. Another consideration when designing a backup strategy for replicated databases should be the distribution retention period. The distribution retention period refers to the time that elapses before a transaction is discarded at the Distributor. This setting is relevant in scenarios where transactional replication is being used. This setting can be configured through SQL Server Enterprise Manager or by using the stored procedure sp_changedistributiondb. Ideally this retention period should be configured to a number greater than the frequency of backups of the distribution database. Configuration in this manner would ensure that none of the transactions expire before a backup is performed. Top Of Page

Snapshot Replication
Snapshot replication consists of a replication where the entire publication is replicated to all Subscribers as a single snapshot. This is best used for data that changes infrequently and where publications are relatively small sized. Publication Back up the published database(s) only when there are changes to the existing publications or new publications are added. A complete backup is preferred.

Distribution Back up the distribution database at the same time as publication. Perform the distribution cleanup task before performing backup. Refrain from adding new snapshot publications or subscriptions at the time the distribution database is being backed up. MSDB database Perform backup whenever any of the changes listed below occur on the Publisher, Subscriber, or Distributor server(s): A subscription is dropped or added. A replication agent is modified. A new Publisher is added to the Distributor. Master database Perform a backup of master on the Publisher and Distributor each time a new Subscriber or Publisher is added. Top Of Page

Transactional Replication
Transactional replication provides a mechanism to propagate changes made to a published database through the transaction log over to the Subscribers. Log Reader Agent reads the transaction log of the published database and transfers the changes to the distribution database. Distribution Agent propagates the transactions to the Subscribers. In order to re-establish transactional replication in a disaster recovery situation, it is vital that the publication and distribution databases be restored to a consistent point in time. SQL Server 2000 handles this task automatically. SQL Server provides an option sync with backup which should be set to TRUE on publication and distribution databases. If this option is set to TRUE, all publication and distribution databases should be backed up at frequent intervals, since the frequency of backups determines the latency with which the changes are propagated to the Subscribers. Publication database(s) If the sync with backup option is turned on for the publication database, Log Reader Agent does not propagate the transactions until they have been backed up at the Publisher. This means that the publication database with the sync with backup setting turned on would have to be backed up at frequent intervals. Any type of backup (including transaction log, differential etc) can be performed for the publication database. This mechanism helps if a backup has to be restored for the Publisher in a disaster situation. Since Log Reader Agent does not propagate any transactions that have not been backed up to the distribution database, there is no possibility of the distribution database having transactions that are not present on the Publisher, in case the publication database has to be restored from backups. There is no further synchronization required if the sync with backup setting was turned on before performing the backup. If the sync with backup is turned off, there is no way to guarantee the consistency of data between Publisher, Distributor, and Subscribers. From a backup/restore disaster recovery perspective, it is recommended that the sync with backup setting be set on. If the sync with backup setting is turned off, Log Reader Agent may transfer data faster than it is being backed up. If the Publisher fails and is restored from a backup, the distribution database may already have transactions that are yet to be performed after the Publisher is restored from backup. Distribution Database If the sync with backup option is used, back up the distribution database as often as possible. This will insure that the transaction log for the publication database is being truncated regularly. Frequent backups of the distribution database however, do not affect the replication latency when the sync with backup setting is turned on. In case of a disaster, restoring the latest backup of the distribution database will ensure trouble-free replication. If the sync with backup setting is not used, there is no way to guarantee the transactional consistency between the publication, distribution, and subscription databases. For quick recovery, it is recommended that this setting be used on any distribution database involved in transactional replication. MSDB database MSDB databases on the Distributor and Subscribers should be backed up whenever a subscription is added or removed or a change is made to any of the replication agents. If replication involves DTS packages to transform the data (in the case of transformable subscriptions), the MSDB database on the Distributor and Subscribers should also be backed up any time: There is a change to any of the DTS packages used for replication. A new subscription is added or an existing subscription is dropped. Master database Back up the master database at the Publisher and Distributor when a new Publisher and/or subscription is added.

Back up the master database at the Publisher and Distributor when a new Publisher and/or subscription is added. Subscription database Subscription databases should be backed up at least once every interval set as the minimum transaction retention period for the Distributor. This ensures that in case of a disaster where a subscription database is lost, it may be restored without loss of any transactions. Top Of Page

Merge Replication
Publisher A publication database should be backed up each time there is a change to the following: The replicated objects schema definition A Publication Property For a detailed list of actions requiring an updated backup, see Strategies for Backing up and Restoring Merge Replication32 in SQL Server Books Online. Distributor A distribution databases role in merge replication topology is limited to synchronization history and error tracking store. If a distribution database is associated only with merge publications, it is not always necessary to restore a distribution database at the same time as the Publisher. A distribution database may be backed up as often as possible; however, this is not a requirement. In the case where a distribution database fails, the most recent backup may be restored. If the backup is not up-to-date, the information that is lost will relate to the history and error tracking for the merge publications and subscriptions. Subscriber(s) It is recommended that a Subscriber be synchronized with the Publisher before backup. It is also recommended that all subscription databases be backed up at least as often as the retention period on the Publisher. If these two recommendations are followed, any subscription database may be restored in case of disaster without any further actions. If a Subscriber subscribes to more than one publication having different retention periods, the backup for that subscriber should be performed as often as the shortest retention period out of all publications. MSDB database Back up the MSDB database at the Distributor and Subscribers at regular intervals. It is recommended that these backups be performed regularly or whenever any of the following have been modified: Any maintenance activity involving a change to replication agent settings on the Publisher, Distributor, or Subscribers. For a detailed list of changes that would prompt an MSDB backup, see Strategies for Backing up and Restoring Merge Replication32 in SQL Server Books Online. Master database The master database for all components (Publisher, Distributor, and Subscribers) should be backed up periodically. Specifically, a backup should be performed after any change to the replication configuration. Recommended Reading See the following SQL Server Books Online topics: Replication Overview33 Replication Architecture34 Backing up and Restoring Replication Databases35 See the following SQL Server 2000 white paper on the Microsoft Developer Network (MSDN): Transactional Replication Performance Tuning and Optimization36 Top Of Page

Set Up Backup Schedules (Maintenance Plan Wizard)


The Maintenance Plan Wizard utility allows for a backup to be scheduled through the Graphical User Interface. This wizard may be invoked through SQL Enterprise Manager. To schedule a backup using the Maintenance Plan Wizard 1. Right-click the database and select All Tasks, then select Maintenance Plan... as shown in Figure 43.

Figure 43: Start Maintenance Plan Wizard The dialog box shown in Figure 44 is displayed.

Figure 44: Maintenance Plan welcome dialog box 2. Click Next> to proceed to the next screen in the wizard. The dialog box shown in Figure 45 is displayed.

Figure 45: Select Databases dialog box 3. Verify that Northwind database is selected. If the maintenance plan should include other databases, check them in the list. 4. Click Next> to proceed to the next screen, shown in Figure 46.

Figure 46: Specify data optimization settings 5. The dialog box in Figure 46 provides data optimization options. All operations in this dialog box are carried out at the same time. The default schedule indicates that it will be executed every Sunday at 1:00 A.M. If this is incorrect, modify the schedule by clicking the Change... button. Description of other fields Reorganize data and index pages causes the indexes in the database to be rebuilt with either the default or provided fill factor value. Update Statistics used by query optimizer causes the statistics for each index on user tables to be resampled. Sampling size is based on the percentage value supplied. This option is unavailable when Reorganize data and index pages is selected because statistics are recalculated automatically when the indexes are rebuilt. Remove unused space from database files causes the database to be shrunk when this maintenance plan job

Remove unused space from database files causes the database to be shrunk when this maintenance plan job executes. This operation will be carried out if the database file size grows beyond the supplied value. Amount of free space to remain after shrink signifies the percentage of original database size that should be left empty after the shrink operation. 6. Click Next> after selecting fields as necessary. The dialog box shown in Figure 47 is displayed.

Figure 47: Specify database integrity check settings 7. This dialog box presents the options available to perform a database integrity check. All operations in this dialog box are carried out at the same time. The default schedule indicates that it will be executed every Sunday at 12:00 A.M. If this is incorrect, modify the schedule by clicking the Change... button. Description of other fields Include Indexes scans indexes on all tables in the selected database(s) for consistency and allocation errors. The Attempt to repair minor problems setting causes SQL Server to use REPAIR_FAST option to try and correct any minor problems that are found in the scan. The use of this option causes the maintenance plan to place the database in single-user mode for the repair option. Perform these checks before doing backups causes SQL Server to perform this check before a backup is performed for the database. 8. Click the Next> button and the dialog box shown in Figure 48 is displayed.

Figure 48: Specify database backup plan

Figure 48: Specify database backup plan 9. This dialog box presents all options for a complete database backup. The complete database backup operation for all selected databases is carried out at the same time. The default schedule indicates that it will be executed every Sunday at 2:00 A.M. If this is incorrect, modify the schedule by clicking the Change...button. Description of other fields Verify the integrity of the backup when complete causes SQL Server to perform a verification of the backup once it completes. SQL Server executes the RESTORE VERIFYONLY command to perform the verification. Either a tape or a disk device may be selected as the target. 10. Click the Next> button to proceed to the dialog box shown in Figure 49.

Figure 49: Specify database backup directory 11. The dialog box shown in Figure 49 is where the target path for a complete database backup is specified. This dialog box is only displayed if Complete database backup is selected in the previous dialog box. Description of other fields Directory in which to store the backup file target directory for complete database backups. Default directory resides within the SQL installation path under the BACKUP folder. Create subdirectory for each database causes a subfolder to be created for each database selected in the maintenance plan. Remove files older than removes any backup files older than the configured age when the maintenance plan job is executed. Backup file extension file extension used for the complete database backup files. By default, this is .bak. 12. Click Next> and the dialog box shown in Figure 50 is displayed.

Figure 50: Specify Transaction log backup plan 13. The dialog box shown in Figure 50 presents the option to back up the transaction log for all the selected databases. Transaction log backup operations for all selected databases are carried out at the same time. The default schedule indicates that it will be executed Monday Saturday at 12:00 A.M. If this is incorrect, modify the schedule by clicking the Change... button Description of other fields Verify integrity of the backup when complete causes SQL Server to execute RESTORE VERIFYONLY to verify the backup once it is complete. Location to store the backup file either a tape or a disk device may be used to perform transaction log backups. 14. Once all the appropriate selections are made, click Next> to view the next dialog box in the wizard as shown in Figure 51.

Figure 51: Specify Transaction log backup directory 15. The dialog box shown in Figure 51 displays configuration settings for the transaction log backup files. This dialog box is displayed only if Transaction log backup is selected and the target is a disk.

Description of other fields Use the default backup directory causes SQL Server to perform the transaction log backup to the default backup folder. This folder is under the SQL Server installation path. Use this directory any folder can be specified if using the default folder is not wanted. Create a subdirectory for each database causes SQL Server to create a subfolder for each database that is configured for this maintenance plan. Remove files older than backup files older than the age specified are removed from the backup folder. Backup file extension the extension that is given to the transaction log backup files. The default extension is .trn. 16. Click Next> to continue to the dialog box shown in Figure 52.

Figure 52: Specify report generation settings 17. This step is optional. It prompts users to save an output file from the maintenance plan. Although this step is optional, it is highly recommended that a report be generated and inspected on a regular basis to spot any failures that might have occurred. Description of other fields Delete text report files older than deletes any files older than the age specified. Send email report to operator generates an e-mail message and sends it to the nominated operator. This setting appears dimmed (unavailable) in the illustration in Figure 52 because there were no operators defined on this server. 18. Once all the options are selected, click Next> to continue the Maintenance Plan Wizard. The dialog box shown in Figure 53 is displayed.

Figure 53: Specify Maintenance plan history settings 19. This dialog box presents the option to log history records for the execution of this maintenance plan. Logging history records helps in troubleshooting. Description of other fields Limit rows in the table to - the number of rows that are kept in the history table. If the number of rows exceeds this number, the oldest records are deleted. Remote server - History records may be logged to a remote servers MSDB database. If the Write history to the server: check box is selected, another server may be selected as the keeper of the job history for this maintenance plan. 20. Click the Next> button to continue. The dialog box shown in Figure 54 is displayed.

Figure 54: Maintenance plan summary dialog box 21. This is the final dialog box in the wizard. It displays the summary of all options selected and allows you to enter a name for this maintenance plan. After verifying the options and entering a name, click the Finish button to create the maintenance plan.

Top Of Page

Modifying the SQL Server Job Schedule


If any of the task schedules have to be changed, the dialog box shown in Figure 55 is displayed. This section explains the fields in this dialog box.

Figure 55: Recurring schedule modification dialog box This dialog box allows a job schedule to be changed to meet the requirements for the individual job. 1. A job may be scheduled to run daily, weekly, or monthly. Select the appropriate radio button in the Occurssection. The option labeled Weeklyin the dialog box changes when the Dailyor Monthlyoption is selected. Figure 56 shows the changed window.

Figure 56: Modify default schedule dialog

Figure 57: Modify default schedule dialog 2. Select the appropriate frequency in the dialog box displayed in Figure 55. A job may be scheduled up to a future date/time or else indefinitely. To schedule a job to end on a specific date, select the End date radio button in the Durationsection and provide the date. 3. Finally, by default, a schedule is enabled. If this schedule needs to be disabled and re-enabled at a later date, uncheck the Enable schedulecheck box. 4. To save the schedule, click the OKbutton. Top Of Page

Backup Techniques for Large Databases


SQL Server 2000 includes enhancements to improve the backup and restore performance of large databases. A variety of techniques may be used to improve the throughput of backup/restore operations. Speeding up backups Backups are one of the most important maintenance tasks that need to be performed at regular intervals. However, under certain circumstances database administrators tend to neglect this task. These circumstances may include the size of the

certain circumstances database administrators tend to neglect this task. These circumstances may include the size of the database, usability, and uptime requirements. Although SQL Server does not require that a database be taken offline for the purpose of performing backups, certain operations cannot be performed while backups are running. These operations include file operations (including expansion, shrinking of database and transaction log files, and ALTER DATABASE statements with ADD or REMOVE FILE operations). Because of this, it might be beneficial to have the backup operation complete in the least amount of time possible. Various techniques may be used to speed up backup performance. They include both hardware and software solutions. Top Of Page

Backup Infrastructure and System Architecture


Performing backups of large databases (in the order of GBs and TBs) will benefit from having a backup friendly machine architecture. Some of the key aspects to consider are covered in this section. Disk backups Perform backups to local disks running off separate disk controllers rather than the one that contains the databases. Format the drives as a lower level of RAID for speed (i.e. RAID 0 or RAID 1). However, this will reduce the fault tolerant capabilities of the disk. Tape backups Use multiple tape devices in a media family configuration for maximum throughput. Run the tape devices off a different controller than the one that holds SQL database files. Use local tape drives instead of network drives. Network backups This mode of backup is not recommended. When performing network backups, several factors are added to the performance equation. These include the speed of the network cards/cables, network architecture and reliability, etc. If it is imperative that network backups be performed, a private network for backup/restore purposes is preferable. This network should not contain any routers between the source and destination machines. It should also be realized that if at any point network connectivity is lost between source and destination machines, the backup may not complete and it might fail with an operating system error. Snapshot backups Snapshot backup involves setting up a three-way mirror for drives that contain SQL Server databases. At the time the backup is performed, one of the mirrors is broken momentarily while a copy of all files on that mirror drive is made to a separate location. The broken mirror is then reestablished back and changes are regenerated from the information on the second mirror drive. Snapshot backups are performed in a very short amount of time and provide the quickest recovery path. Snapshot backup is developed in conjunction with several hardware vendors. Snapshot backup is applicable only on hardware that supports this functionality. Please see your hardware vendor for information regarding this functionality. Top Of Page

Software Configuration and Database Architecture


Differential backups Investigate the timings for differential backups. This kind of backup is extremely versatile and quicker than complete backup. The fact that this backup is also cumulative means that only the most recent backup needs to be maintained. For databases that are updated at regular intervals but do not experience heavy update activity, differential backups may provide an ideal solution. Database architecture For databases that experience heavy update activity, differential backups may not be the right choice. In this case the better option would be to include transaction log backups at short intervals. The reason for this is that if enough updates are performed on a database, a differential backup might be as large as the complete backup. If only certain table(s) are updated heavily and the rest of the database is static, it might be a good idea to create separate filegroups for active and inactive portions of the database. If the database is architected such that there are filegroups, filegroup backups may be implemented to reduce the overall time required for backups. As mentioned before, filegroup backups require transaction log backups for recovery. Hence, transaction log backups would be required if filegroup backups are implemented. Recommended Reading See the following SQL Server Books Online topic: Optimizing Backup and Restore Performance

Optimizing Backup and Restore Performance Top Of Page

About Disaster Recovery Planning


One of the most important functions that an SQL Server database administrator has is to design and implement a disaster recovery plan for the production system. This kind of planning involves planning the following aspects: Creating a backup plan for all databases. Setting up a warm backup server with the databases that are critical to an organizations operations. Testing the backups at regular intervals. Circulating backups for off-site storage. Documenting the system and training co-workers in disaster recovery procedures. Simulating disaster recovery scenarios to test the timing and value of current procedures. There are various techniques for designing an efficient disaster recovery scenario. Almost all of these techniques have as their first step: Understanding the requirements for disaster recovery for your organization. Familiarizing yourself with all the options available in SQL Server, so an efficient strategy may be designed. Understanding the disaster recovery requirements is an extremely critical step as it lays down the foundation for a robust disaster recovery plan for any organization. The following questions are provided as a guide to the kind of information that should be understood by the person in charge of designing this strategy: How critical is the data stored on the database? If any data is lost, is it re-creatable? How much information can the organization afford to lose in case of a disaster? What is the maximum downtime that a company can take in case of disaster? How much data is modified in the database? Is this is a 24x7 (24 hours a day, 7 days a week) system or is there a maintenance/downtime window available on a regular basis? What resources are available to design a strategy? This would include resources like a redundant machine, off-site storage facility, etc. There are several techniques that may be used to design a disaster recovery strategy. Some of these techniques are not discussed since they relate to the core operating system and are outside the scope of this paper. Depending on the kind of disaster a company might be dealing with, backup/restore may serve as the most robust disaster recovery mechanism available. Since there are several kinds of backups to choose from, a combination usually leads to the quickest recovery path. See the case study in this paper. Recommended Reading See the following SQL Server Books Online topics: Designing a backup restore strategy37 Backup and Restore Operations38 See the following Microsoft Knowledge Base article: Q307775 INF: Disaster Recovery Articles for Microsoft SQL Server http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q30777539 Top Of Page

Case Studies
Mid-size business OLTP This is a mid-size business with 150 employees throughout the United States. SQL Server is used for Inventory, Customer Information, Sales, HR/Payroll, and the development environment. The company uses several SQL Server 2000 servers. The company develops applications in-house. The company uses a total of around 6 GB of database space. The space usage patterns indicate a growth rate of about 100 MB per month across all databases. Three main databases are Inventory (1.5 GB), Sales/Customer Information (2.5 GB), and HR/Payroll (2 GB). There are several development databases that are used for testing. These are placed on the development server and are less than 500 MB in size.

used for testing. These are placed on the development server and are less than 500 MB in size. All SQL Server computers are managed by two database administrators (DBAs). One is in San Francisco and one in New York City. The following table shows more information about each production database. Database / Parameter Size

Inventory

Sales/Customer

HR/Payroll

1.5 GB

3.5 GB Track customer orders and shipments Most heavily used during weekdays. Customer orders are added during business hours. Reports are prepared at nights. High usage and visibility database. Critical to company operations. Require point-of-failure recovery. This system should be operational within 20-30 minutes if outage happens during working hours. No data loss is acceptable.

1 GB Used for employee payroll information Moderate use database. Four staff members in HR use this database. Moderate amount of modifications and reports prepared during working days. Information maybe recreated with some effort. Information is important to companys operation. Outage during weekdays will not affect core business. The database will need to be operational within 12 business days. Loss of 1-2 days worth of information may be acceptable.

Usage

Track items sold by company.

Activity Pattern

Most heavily used at the end of each month when an inventory reconciliation is performed and new inventory items are added.

Critical information stored in the database. Information may be recreated with some effort. Company operations Disaster may be affected severely if information is Recovery not recreated within 1 business day. Any Requirements new information added at the end of month should not be lost. Information added during the month may be recreated.

The disaster recovery requirements highlight the need to use several techniques to implement the disaster recovery plan for these production databases. Following are some suggestions on how to design the recovery strategy for each database. Minimum disaster recovery plan for Inventory database Database may be Simple Recovery model. This provides minimum operational overhead. Transaction log is maintenance free. Set up a complete database backup after the end-of-month reconciliation is performed. This is critical as one of the requirements is that end-of-month changes should not be lost. Set up a differential database backup to be performed each night. This will ensure that all changes are backed up without the overhead of maintaining all previous differential backups. Refresh the differential backups each time a complete backup is performed. In case of a disaster, restore the previous months complete backup and then apply the latest differential backup. Any data lost between the last differential backup and disaster time may be recreated. Database backups and differential backups should be tested at regular intervals to ascertain recoverability and verify that disaster recovery is possible within the allocated time window. Added recommendations for Inventory database Perform a complete backup more often than once a month. If disk space is not a factor, a complete backup may be performed each week, with differential backups being performed every night. If disaster recovery requirements change, the recovery model may be switched to Bulk-Logged or Full and transaction log backups may be performed at regular intervals between successive differential backups. Since the data is critical to company operations, it might be a good idea to implement warm backup using Log Shipping. However if this solution is to be implemented, the recovery model for the database should be switched to Full or BulkLogged. For more information on implementing Log Shipping, see the following section on the Sales database. Minimum disaster recovery plan for Sales/Customer database Database should be Full Recovery model. This provides maximum recoverability in case of disaster. Perform a complete database backup each night (at 10 P.M.). Perform differential backups twice a day (at 11 A.M. and 4 P.M.). Perform transaction log backups every 10-15 minutes.

Perform transaction log backups every 10-15 minutes. In case of a disaster, restore the previous nights complete backup, apply the latest differential backup, and apply any further transaction log backups performed after the latest differential backups. Database, differential, and transaction log backups should be tested at regular intervals to ascertain recoverability and verify that disaster recovery is possible within the allocated time window. Added recommendations for Inventory database Since this database is extremely critical for the companys operation, it is highly recommended that Log Shipping be used to set up a warm backup server. Log Shipping provides complete environment redundancy and may be beneficial in getting the systems functional before the 20-30 minute time window available to get the system functional again. Setting up Log Shipping may also provide the benefit of a redundant report server. Report generation may be load-balanced between the two servers during non-working hours. Due to the existing geographical location of company offices, it might be beneficial to set up the log shipping server. Minimum disaster recovery plan for HR/Payroll database All the recovery requirements are roughly the same as the Inventory database, so a similar plan could be implemented for this database as well. All backups should be tested at regular intervals to ascertain recoverability and verify that disaster recovery is possible within the allocated time window. Added recommendations for HR/Payroll database Have the database use Full or Bulk-Logged Recovery model. Perform a complete database backup once every week. Perform a transaction log backup each night. Refresh the transaction log backups after the complete database backup is successful. These steps will reduce the recovery time window as well as minimize the data loss in case of disaster. Large Organization, 24x7 (24 hours a day, 7 days a week) System This e-commerce organization uses SQL Server for their .com business. The company sells books, magazines, and music CDs through their Web site. SQL Server databases are used for the OLTP system for the e-commerce site. The database experiences a high volume of transactions at any given time. Usually the transactional activity is lowest during night hours. The organization uses DTS packages to download data into another database each night. This data is then used for reporting purposes. The DTS package selects the data to move into the report server database. The data in the report server database is refreshed each night. The operations for this organization are divided up in four separate databases: OnlineContent, Inventory, Sales, and Customers. All databases experience a high level of transactions (OnlineContent is the most active database). The total database size is about 300 GB. These databases work together to form the entire e-commerce platform. Disaster recovery requirements for this organization include the following: Downtime of less than a minute for all databases in case of total machine failure. If the downtime is more than a minute, the losses are estimated at $200 per minute. No data loss acceptable for any of the databases. Following is some background information on the hardware environment: Backup media is an Ultra Wide SCSI tape library. Databases are placed on a fiber-optic SAN drive with 2 TB of total drive space. Microsoft Windows 2000 Clustering in Active/Active configuration is used to protect against single machine failure. Disaster recovery planning It is important to understand the major requirement for disaster recovery is that the company starts losing money if downtime is more than a minute. It is also a major requirement that the company should not lose any data in case of hardware failure. This requirement means that the disaster recovery plan should include complete machine redundancy using Log Shipping. Recommendations To provide a quick backup/restore mechanism, snapshot backups should be implemented. Snapshot backups perform extremely fast complete database backups and equally fast recovery if needed. Along with snapshot backups, a tape backup of the .mdf/.ldf files taken would be beneficial for off-site storage.

Along with snapshot backups, a tape backup of the .mdf/.ldf files taken would be beneficial for off-site storage. Log Shipping could be implemented as a solution to set up a standby server in case a complete machine failure takes down all nodes of the cluster or the shared drives. Databases should be in Full Recovery model and transaction log backups should be performed every few minutes. A 3-5 minute interval may be used to start off and if this interval seems too small, it may be increased to 5-7 minutes. Along with the four production databases, MSDB and master should be backed up, because they contain information relating to the scheduled jobs and logons. Top Of Page

Appendix A Database Script for Filegroup Backup and Restore


Note Please change/rename the path/file names as necessary.

Note Some parts of the following code snippet have been displayed in multiple lines only for better readability. These should be entered in a single line.

CREATE DATABASE files ON (NAME = files, FILENAME= 'c:\Program Files\Microsoft SQL Server\MSSQL\Data\files.mdf ', SIZE = 2), FILEGROUP FG1 (NAME = fg1_file1_data, FILENAME = 'c:\Program Files\Microsoft SQL Server\MSSQL\Data\files_fg1_1.ndf ', SIZE = 2), (NAME = fg1_file2_data, FILENAME = 'c:\Program Files\Microsoft SQL Server\MSSQL\Data\files_fg1_2.ndf', SIZE = 2), FILEGROUP FG2 (NAME = fg2_file1_data, FILENAME = 'c:\Program Files\Microsoft SQL Server\MSSQL\Data\files_fg2_1.ndf', SIZE = 2), (NAME = fg2_file2_data, FILENAME = 'c:\Program Files\Microsoft SQL Server\MSSQL\Data\files_fg2_2.ndf', SIZE = 2) LOG ON (NAME = files_log, FILENAME = 'c:\Program Files\Microsoft SQL Server\MSSQL\Data\files_log.ldf ', SIZE = 2)

Top Of Page

Links Table
1http://msdn2.microsoft.com/en-us/library/ms187048.aspx 2http://msdn2.microsoft.com/library/aa226073.aspx 3http://msdn2.microsoft.com/library/aa173531.aspx 4http://msdn2.microsoft.com/library/aa173678.aspx 5http://technet.microsoft.com/en-us/library/Cc966495.ssbkre04_big(l=en-us).gif 6http://technet.microsoft.com/en-us/library/Cc966495.ssbkre08_big(l=en-us).gif 7http://msdn2.microsoft.com/library/aa174465.aspx 8http://msdn2.microsoft.com/library/aa173511.aspx 9http://msdn2.microsoft.com/library/aa173693.aspx 10http://msdn2.microsoft.com/library/aa174477.aspx 11http://technet.microsoft.com/en-us/library/Cc966495.ssbkre26_big(l=en-us).gif 12http://technet.microsoft.com/en-us/library/Cc966495.ssbkre27_big(l=en-us).gif 13http://technet.microsoft.com/en-us/library/Cc966495.ssbkre28_big(l=en-us).gif 14http://msdn2.microsoft.com/library/aa238405.aspx 15http://msdn2.microsoft.com/library/aa238420.aspx 16http://msdn2.microsoft.com/library/aa196613.aspx

16http://msdn2.microsoft.com/library/aa196613.aspx 17http://msdn2.microsoft.com/library/aa196681.aspx 18http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q221465 19http://support.microsoft.com/?id=253817 20http://msdn2.microsoft.com/library/aa213830.aspx 21http://technet.microsoft.com/en-us/library/Cc966495.ssbkre39_big(l=en-us).gif 22http://msdn2.microsoft.com/library/aa196683.aspx 23http://msdn2.microsoft.com/library/aa213835.aspx 24http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q253817 25http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q281122 26http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q240867 27http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com/support/sql/papers.asp 28http://msdn2.microsoft.com/library/aa224740.aspx 29http://msdn2.microsoft.com/library/aa214780.aspx 30http://msdn2.microsoft.com/library/aa214429.aspx 31http://msdn2.microsoft.com/library/aa937546.aspx 32http://msdn2.microsoft.com/library/aa237097.aspx 33http://msdn2.microsoft.com/library/aa237426.aspx 34http://msdn2.microsoft.com/library/aa224548.aspx 35http://msdn2.microsoft.com/library/aa237096.aspx 36http://technet.microsoft.com/en-us/library/cc966539.aspx 37http://msdn2.microsoft.com/library/aa173660.aspx 38http://msdn2.microsoft.com/library/aa196675.aspx 39http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q307775

Community Content
2011 Microsoft. All rights reserved.

Vous aimerez peut-être aussi