After backing up SQL Server successfully, you will get a .bak file that can be used to restore database from backup via SSMS, Transact-SQL, command line, etc.
In this post, I will introduce these frequently used recovery approaches, and an easy alternative to restore SQL database from backup easily. Keep reading and pick the way you like.
📢Note: All the methods below only support restoring database from lower version to the same or higher version , like from SQL Server 2012 to 2016. If you want to migrate database to a lower version, please refer to this guide.
As with the backup, SSMS also includes a restore wizard to guide you through the process intuitively. To use it, please connect to the instance you want to restore database to.
1. Right-click Databases and choose Restore Database… in the menu.
2. In the popping out window, choose the "Source" as Device, and click the … icon to Add the bak file. If you cannot find it, please locate to its save path and enter its full name (including .bak) to specify it.
3. The backup information will show in the Restore Database window if there's no problem, then you can click OK to restore SQL database from the bak file.
In addition to following the wizard, you can also restore database in SQL Server using query. It's actually an easier way as long as you get to know the T-SQL statements.
1. Click on New Query to open a SQLQuery window. Type the restore command in it:
For example, if I want to restore the SQL database "example" from a full backup "example.bak" in D:\Backup, then the command will be:
2. Hit the Execute button to run the command, you will see the backup status in the Messages below.
To restore from a differential backup, you need to restore the last full backup WITH NORECOVERY in advance, so the command will be like:
Note: The first bak file should be the full backup file, and the second one should be the differential backup file.
During the restoration, you may receive an error saying "The tail of the log for the database has not been backed up. Use BACKUP LOG WITH NORECOVERY to backup the log if it contains work you do not want to lose. Use the WITH REPLACE or WITH STOPAT clause of the RESTORE statement to just overwrite the contents of the log."
This is because the backup file that you are trying to restore is older than the target database. To resolve it, you can follow the tips mentioned in the message:
1. Backup the transaction log WITH NORECOVERY beforehand, and then try restoring the bak file again.
2. Restore the database using the WITH REPLACE or WITH STOPAT clause.
Alternatively, you can use command line to restore SQL database from a backup without launching SSMS - this requires SQLCMD, which is shipped with SQL Server in 2014 and lower versions. If you are running higher versions, please download it here.
In a previous article, I've explained how to backup SQL Server database with command line, you can hit the link to get more details. Here I'll focus on how to restore bak file.
1. Press Win + R and type "cmd" in the input box. Click OK to open Command Prompt.
2. Then, use this command with your own server name and filepath:
In my case, it should be:
And if you want to restore a differential backup using command line, you can first restore the full backup WITH NORECOVERY, and then restore the differential backup WITH RECOVERY:
Note: The first bak file should be the full backup file, and the second one should be the differential backup file.
Similar to the previous method, if you encounter "The tail of the log for the database has not been backed up" error, you can either BACKUP LOG WITH NORECOVERY in advance:
Or restore the database WITH REPLACE or WITH STOPAT:
That's it, the recovery issue should be resolved.
It's flexible to restore SQL database from bak file. You can backup database and restore to another server, for example. But the above methods are either cumbersome or require some T-SQL knowledge. As a supplement, I'd like to introduce Qiling Backup, which can centrally backup and restore SQL Server database among all the network connected Windows PCs or servers.
This software works with all the Windows OS above (and including) Windows 7 and Windows Server 2008 R2. Its SQL Server Backup feature supports SQL Server 2005 to 2022, and enables you to back up or restore multiple databases at once. The whole operation is done through simple clicks with no expertise required.
Here's a 30-day free trial:
✍Notes:
3 methods are provided in this article to restore SQL database from a bak file. In fact, you can also use effective third party software - Qiling Backup to manage SQL Server backup and restore more intuitively.