How to Download and Restore Northwind database to SQL Server

By FoxLearn 11/15/2024 9:20:47 AM   40.52K
To download and restore the Northwind database to SQL Server, follow these steps.

How to create a Northwind database?

The Northwind database can be downloaded either as an executable SQL script or as a backup file (.bak) for easy restoration. It includes sample data and is compatible with SQL Server versions 2005, 2008, 2012, 2014, 2016, and 2017.

How to download Northwind database?

To download the Northwind backup database file you can go Codeplex or northwind download database bak link, then unzip your downloaded file, you will see the Northwind.bak download file or Northwind.sql script file.

You can easily find the northwind database sample download bak in the extracted folder.

How to restore northwind database in SQL Server?

First, Launch SSMS and connect to your SQL Server instance.

If you haven't installed SSMS, you can download it directly: Download

Once installed, Open SSMS and connect to your SQL Server instance by entering the necessary credentials.

In SSMS, right-click on the Databases node in the Object Explorer, and select Restore Database.

restore sql database

Enter your database name that you want to restore

restore sql database

In the Restore Database dialog

Choose Device under the Source section, then click on the ... button to browse to the location where your .bak file is stored.

backup database

Click OK to select the file, and then proceed to Restore.

Finally, Click OK button to finish restore mssql database from bak file.

If you downloaded the .sql script instead of a .bak file, follow these steps

First, create a new database in SQL Server.

You can do this in SSMS by right-clicking on Databases and selecting New Database.

Name the database Northwind.

In SSMS, open a new Query Window.

Next, Open the downloaded .sql script.

Execute the script by clicking the Execute button (or pressing F5).

What is the Northwind database?

The Northwind database is a sample database provided with Microsoft Office suite. It contains sales data for a fictitious company called Northwind Trader, which specializes in exporting and importing foods.