Tagged Questions
The northwind tag has no wiki summary.
6
votes
2answers
7k views
Where can I find the Northwind database for Microsoft SQL Server 2008?
I'm trying to find and create/import the Northwind database to practice my Linq-fu.
I cannot find it for the life of me, searching just turns me to this page, which in turn tells me to find it on the ...
6
votes
3answers
5k views
Northwind query exercises/examples
Thus far all I have done with SQL are simple select statements, but now I've also started learning about INNER JOINs, GROUP BY clauses and inner queries. I learned the concepts, but now I’d like to ...
4
votes
1answer
2k views
Entity Framework - Saving Changes to Related Objects in Detached State
I'm using the Northwind database as an example for this post where I am having a problem saving detached entities back to the database using the entity framework.
I have the following two methods to ...
3
votes
1answer
322 views
How to Specify a Compound key in Entity Framework Code First
I have a quick question about setting up the mappings between [Order Details], [Products] and [Orders] in the Northwind datbase.
[Order Details] has no primary key, and looks like this
[Order ...
3
votes
4answers
3k views
Is there a “Northwind” type database available for MySQL?
I need some test data for a MySQL utility that I am creating. Does anybody know where I can find one that has a similiar (if not more) amount of data as Northwind for SQL Server?
2
votes
3answers
53 views
Need help with corrected SQL syntax for Northwind Data Access Layer tutorial
I am attempting to complete the Data Access Layer tutorial from http://msdn.microsoft.com/en-us/library/aa581776.aspx I have so far (thanks to this forum) be able to generate the appropriate ...
2
votes
1answer
229 views
T4 for Sharp Architecture/Northwind Problem
I have just downloaded sharparchitecture/Northwind and i'm trying to
get crud scaffolding to work. I have changed nothing except adding
missing reference to this class library. I try to run
...
2
votes
1answer
234 views
Northwind traders unitprice redundancy?
In the northwind traders database unitprice is listed on both the products and [order details] tables. Both tables list different prices for the same product. Is this a redundancy or is there an ...
1
vote
1answer
28 views
how to implement Northwind in Django
I am trying to implement Northwind database model in MySQL using Django-admin for displaying data. Does someone know how to do it "clean" way from original model? Is there any functional ...
1
vote
1answer
75 views
Sample databases for SQL Server 2008
To practice and learn more about databases, I’m searching besides the well-known databases like AdventureWorks and Northwind for more exemplary databases. Are there any or any which are possible to ...
1
vote
2answers
102 views
Current way to setup ASP.NET site with demo data?
I need to set up ASP.NET and connect it to some demo (northwind) data.
Considering all the versions of SQL, what is the most current /efficient way to get a database into a project and do a select ...
1
vote
1answer
55 views
How to refresh relational property of a LINQ class?
I have two instances of a program that manipulate same Northwind database.
When I add some records to the database from one of the instances (for example adding some orders to Orders table with a ...
1
vote
1answer
245 views
Can't get Sum() working in Northwind example
The following code is generating a runtime error and I have no idea why.
from o in Orders
group o by o.Employee into employeeOrders
select new {
employeeOrders.Key.EmployeeID,
...
1
vote
6answers
558 views
Is there an xml equivalent to Northwind for xml developers?
For a XSLT project I could sure use a .xml file that fills the same gap that Northwind fills for database projects. It should be 20-100k, but still have a good amount of data that is easy to ...
0
votes
1answer
67 views
Working with subqueries in SQL server
I am still a noobie when it comes to the SQL server. I know something but other still seem so confusing. I know the more you practice with it the better you get. Well I am working on this part that ...
0
votes
2answers
125 views
sql databases Northwinds , pubs , AdventureWorks or some others?
Technology : Microsoft SQL Server 2008
Aim : Master SQL Server 2008 using Microsoft's databases
I am looking for a tutorial where I get a lot of exercises to do, so that I can master SQL Server ...
0
votes
0answers
77 views
Completing the Northwinds Data Access Layer Tutorial, custom method GetProducts()
I am just about finished with the tutorial on creating a data access layer at: http://msdn.microsoft.com/en-us/library/aa581776.aspx. Toward the end of the tutorial we create a custom GetProducts ...
0
votes
2answers
259 views
TSQL basic join on Northwind database
I am learning TSQL (well, just SQL to tell the truth) and I want to make Employee - Product statistic on Northwind database.
Expected results should be something like:
EmployeeID | ProductID | ...
0
votes
1answer
177 views
Making WCF Northwind Sharp Architecture works
Once again, as a beginner with WCF, MVC and Sharp Architecture, i might asking a stupid question, so bear with me.
I'm finally able to make the Northwind example of Sharp Architecture work.
I can ...
0
votes
2answers
848 views
Where can I download Northwind database for Postgresql?
Is there a downloadable Postgres database that contains dummy data? preferably Northwind, something i can practice my query ideas
0
votes
6answers
3k views
ASP.net DAL DatasSet and Table Adapter not in namespace - Northwind Tutorial
I've been attempting to walk through the "Creating a Data Access Layer" tutorial found http://www.asp.net/learn/data-access/tutorial-01-cs.aspx
I create the DB connection, create the typed dataset ...
0
votes
4answers
544 views
Converting Northwind 2007 to SQL2005 Database
I have recently downloaded the Access 2007 Northwind example database and would now like to convert the database into a SQL 2005 database. I am using the Developer Edition of SQL 2005 and not SQL ...
0
votes
3answers
367 views
Problem in mapping Northwind Customer with NHibernate
As a beginner on NHibernate (2.1.0), I am trying to set up my first unit test using the famous Northwind database. The test goes like this (the configuration files can be found at the end of this ...
0
votes
4answers
143 views
Table's key pointing to its own table?
In this image, why is the EmployeeID pointing to it's own table while the order id is not pointing to the order's table. The screenshot is a picture of the northwind database.
0
votes
3answers
599 views
How to view installed Northwind database?
I have installed a sample database, specifically Northwind from http://msdn.microsoft.com/en-us/library/8b6y4c7s.aspx.
After installing the .msi file, I dont see any Northwind database in my local ...
-1
votes
2answers
306 views
How do I create my own database instead of “Northwind sample database” MSDN mentions?
Every other SQL Server walkthrough says I have to install "the Northwind sample database" and then connect to it. I find it ridiculous - I'd rather create a new empty database and then populate it.
...
-3
votes
2answers
36 views
Select all columns on a group by throws error
I ran a query against Northwind database Products Table like below
select * from Northwind.dbo.Products GROUP BY CategoryID and i was hit with a error. I am sure you will also be hit by same error. ...