2

有谁知道这两个数据库之间有什么区别?我问的原因是我正在上 sql 课程,他们使用的是 2008,但是,由于我安装了 sql server 2005,我无法使用 Adventureworks 2008。谢谢你的帮助。

4

2 回答 2

5

来自AdventureWorks的官方网站:

AdventureWorks 2008R2 详细信息

AdventureWorks2008 和 AdventureWorks2008R2 的设计进行了以下更改:

  • 代表人和企业的方式已经改变。一些表已被添加、重命名和删除。这些更改可以更好地与 Microsoft ADO.NET Entity Framework 集成。
  • 现在在数据库中展示了新的数据类型和属性,包括:
    • 日期和时间
    • 等级id
    • 地理
    • 文件流
  • 集成的全文支持已被纳入数据库。
于 2011-02-04T15:48:57.150 回答
1
The following databases were designed for SQL Server 2005 but will also work just fine on SQL Server 2008 and higher.
AdventureWorks    -- the OLTP database
AdventureWorksDW  -- the Data warehouse
AdventureWorksLT -- a smaller, simplified subset ofj the AdventureWorks data

The following databases were updated for SQL Server 2008 and will NOT work with SQL Server 2005.
AdventureWorks 2008   -- the OLTP database
AdventureWorksDW2008  -- the Data warehouse
AdventureWorksLT2008  -- a smaller, simplified subset ofj the AdventureWorks data

资源:

http://social.msdn.microsoft.com/Forums/en/sqlserversamples/thread/1ece1f93-313d-46d0-97e6-c8ce24aa9cc5

于 2011-02-04T15:52:46.323 回答