Skip to content

Northwind database that can be downloaded as an executable sql script or as a backup that can be restored with sample data currently works with Sql Server 2005 and Sql Server 2008

License

Notifications You must be signed in to change notification settings

ErcinDedeoglu/northwind

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NorthWind

Introduction:

NorthWind is MS created DB schema for SQL demonstration, original NorthWind is deposite at https://northwinddatabase.codeplex.com/, but this will be terminated soon, so it is worth to make a backup here.

Reference

  1. http://www.bradoncode.com/tutorials/learn-mean-stack-tutorial/
  2. https://github.com/tmcnab/northwind-mongo Convert from SQL to CSV then mongoDB
  3. https://github.com/dalers/mywind <== Converted to mysql format (Worked for me)

DB Schema

Alt

Northwind.bak.zip - Northwind database backup for Sql Server 2005 and 2008. Unzip / decompress the file then use the Restore Database option from Sql Server Management Studio 2005 / 2008 to restore the database

Northwind.sql.zip - - Northwind database creation script for Sql Server 2005 and 2008. Create a database called northwind in your Sql Server then. Unzip / decompress the file then open the sql file in Sql Server Management Studio 2005 / 2008 and hit F5. OR run the below command (sample) sqlcmd -S Localhost -d Northwind -i D:\Sql\Northwind.sql


Query Examples: SELECT OD.ProductID, SUM(Quantity) FROM [Order Details] as OD inner join Products on Products.ProductID = OD.ProductID group by OD.ProductID

About

Northwind database that can be downloaded as an executable sql script or as a backup that can be restored with sample data currently works with Sql Server 2005 and Sql Server 2008

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published