
If you use a database to store your data then it becomes mandatory to backup it up. A Backup is a copy of your data that is maintained so that you can bring back your data, in case of a system failure. Depending on how important your data is you need to back it up every day/ every week or every month. The following article explains how to backup your MS SQL DB.
-
Click Start > All Programs > MS SQL Server 2005 > SQL Server Management Studio. The SQL Server Management Studio will now be launched.
-
Enter your login details and connect to the server.
-
Expand the Databases folder and select the DB that you want to backup. Right-click this database and select Tasks > Back Up… option. The Back Up Database window will be launched.
-
From the Backup Type drop down select the Full option to perform a complete database backup.
-
In the Backup Component section select the Database option.
-
Enter a name for the backup in the Name box. Enter a short description about the Backup in the Description box.
-
Click the Add button to specify a destination for the backup.
-
Click the Options tab in the left pane. The options will now be displayed.
-
Select the Append to the existing backup set option to append the current backup to existing file or device.
-
Check the Verify backup upon completion option to verify the backup upon completion.

-
Click the OK button to begin the Backup. Once the backup is complete you will get a confirmation message, click OK.
-
Now, again right-click the DB from the list and select Tasks > Back Up… option. The Back Up Database window will be launched.
-
Select the Transaction Log option to backup the DB’s log from the Backup Type drop down.
-
Enter a name for the backup in the Name box. Enter a short description about the backup in the Description box.
-
Click the Add button to specify a destination for the backup.
-
Click the Options tab in the left pane. The options will now be displayed.
-
Select the Append to the existing backup set option to append the current backup to existing file or device.
-
Check the Verify backup upon completion option to verify the backup upon completion.
-
Click the OK button to begin the Backup. Once the backup is complete you will get a confirmation message, click OK.
-
Close the SQL Server Management Studio.
-
Now, copy these files to a device (Pen Drive) or burn them on a CD.
For more info on backup see, MS SQL Server 2005 Backup
