问题描述
我正在尝试查找和创建/导入Northwind数据库以练习Linq-fu.
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 official page which isn't there.
http://msdn.microsoft. com/en-us/library/ms227484%28v = vs.90%29.aspx
在哪里可以找到Northwind数据库?
Where can I find the Northwind database?
推荐答案
SQL Server 2008没有附带Northwind.您可以改为:
Northwind doesn't come installed with SQL Server 2008. You can instead:
- 下载脚本用于创建Northwind和pubs示例数据库.
- 从Microsoft下载Northwind并发布MDF/LDF .这篇文章的标题为"SQL Server 2000示例数据库".
- download scripts for creating the Northwind and pubs sample databases.
- download Northwind and pubs MDF/LDF from Microsoft. The article is titled "SQL Server 2000 Sample Databases".
它们采用SQL Server 2000格式/兼容模式.微软似乎已经停止使用这两个数据库,而使用SQL Server 2008的新示例数据库:AdventureWorks.
They come in SQL Server 2000 format / compatibility mode. Microsoft seems to have stopped using these 2 in favour of the new sample database for SQL Server 2008: AdventureWorks.
您可以下载AdventureWorks 2008 R2 SR1 .
Microsoft在CodePlex上具有 SQL Server产品数据库示例.
Microsoft has its SQL Server Product Database samples at CodePlex.
这篇关于在哪里可以找到Microsoft SQL Server 2008的罗斯文(Northwind)数据库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!