SQL Server Database backup

Leave a Comment
Hi All,
In a following post we will see about how to take a backup of database using SQL Server Management Studio.

Database Backup Steps:
1.     Navigate to SQL Server Management Studio.
2.     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…”

3.     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“.

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

5.     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\bkpXXO-Full190315.bak“. Note that this is the entire actual file path.

6.     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‘.

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

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



Thank you.

Related Post

0 comments:

Post a Comment