How to Backup a Database using Microsoft SQL Server Management Studio Express

If you are a VPS or Dedicated Server customer running SQL Server on your Server, this article will walk you through how to backup a database and make a copy of a database using Management Studio Express.

Step 1
You will first need to connect to your database server, using SQL Server Management Studio Express. For this example, we will backup the database named “backmeup” to our “C:\backup” folder. Once connected to your database server, you will need to browse to your database in the left window pane of Management Studio. Right Click on your database, and under “Tasks” choose “Back Up…”

Backup a Database using Microsoft SQL Server Management Studio Express 1

Step 2

A new window will open where we will configure where to save the database backup file. You will want to ensure that the “Backup type” is set to “Full” to get a Full backup of your database. Now, highlight the Destination file that is already in the list by clicking on it, and Click “Remove“.

Backup a Database using Microsoft SQL Server Management Studio Express 2

Step 3

Now, Click “Add…” to specify where to save the backup file.

Backup a Database using Microsoft SQL Server Management Studio Express 3

Step 4

A window will pop up, asking you where to save the backup file. Enter a location of your choice. For this example, we will save it to “C:\Backup\backmeup-Full-041608.bak“. Note that this is the entire actual filepath.

Backup a Database using Microsoft SQL Server Management Studio Express 4

Step 5

Now, we have to make sure that the backup you are creating overwrites all existing backup sets, as appending it to an existing set can cause conflicts when attempting to perform a restore. On the left-hand side of the window, click on ‘Options‘, and then click on ‘Overwrite all existing backup sets‘.

Backup a Database using Microsoft SQL Server Management Studio Express 5

Step 6

Once this option is in place, all that is left to do is to run the backup! Click “OK” to begin the database backup.

Backup a Database using Microsoft SQL Server Management Studio Express 6

Step 7

If the database backed up successfully, you should receive a message as pictured below.

Backup a Database using Microsoft SQL Server Management Studio Express 7

Was this article helpful?

Related Articles