SQL SERVER – Install Samples Database Adventure Works for SQL Server 2012
Posted
by pinaldave
on SQL Authority
See other posts from SQL Authority
or by pinaldave
Published on Thu, 15 Mar 2012 01:30:44 +0000
Indexed on
2012/03/18
18:07 UTC
Read the original article
Hit count: 555
PostADay
|sql
|SQL Authority
|SQL Documentation
|SQL Download
|SQL Query
|SQL Server
|SQL Tips and Tricks
|SQLServer
|T SQL
|Technology
AdventureWorks is a Sample Database shipped with SQL Server and it can be downloaded from CodePlex site. AdventureWorks has replaced Northwind and Pubs from the sample database in SQL Server 2005.The Microsoft team keeps updating the sample database as they release new versions.
For SQL Server 2012 RTM Samples AdventureWorks Database is released:
You can download either of the datafile and create database using the same. Here is the script which demonstrates how to create sample database in SQL Server 2012.
CREATE DATABASE AdventureWorks2012
ON (FILENAME = 'D:\AdventureWorks2012_Data.mdf')
FOR ATTACH_REBUILD_LOG ;
Please specify your filepath in the filename variable. Here is the link for additional downloads.
Reference: Pinal Dave (http://blog.sqlauthority.com)
Filed under: PostADay, SQL, SQL Authority, SQL Documentation, SQL Download, SQL Query, SQL Server, SQL Tips and Tricks, SQLServer, T SQL, Technology
© SQL Authority or respective owner