Explore rich business intelligence scenarios with this sample data.
The AdventureWorksDW sample database is designed for use with Microsoft SQL Server Business Intelligence features. It provides a comprehensive dataset representing a fictional global manufacturing company, AdventureWorks Cycles. This database is ideal for learning, developing, and testing solutions related to data warehousing, reporting, and analytics.
It includes tables for sales, marketing, product inventory, human resources, and more, allowing for in-depth analysis of business performance.
The AdventureWorksDW schema is structured to support various BI functionalities:
To utilize the AdventureWorksDW sample database, you typically need to restore a pre-built backup file onto your SQL Server instance.
Here's a basic query to retrieve total sales amounts by year:
SELECT
YEAR(S.[OrderDate]) AS SalesYear,
SUM(S.[SalesAmount]) AS TotalSales
FROM
FactInternetSales AS S
GROUP BY
YEAR(S.[OrderDate])
ORDER BY
SalesYear;
Download the AdventureWorksDW sample database backup file to get started with your business intelligence projects.
Download AdventureWorksDW (.bak)Link will direct you to the official Microsoft download center.