Installing Wide World Importers Sample Database

Now the SQL Server and the management studio are ready for using. For training purpose, we need a database with some sample data. The sample database will be helpful for learning SQL Server. For this purpose, Microsoft has introduced the Wide World Importers Sample Database along with SQL Server 2016. Microsoft has published WideWorldImporters sample database as open source through GitHub. (NOTE: If you are looking for sample database for SQL server 2014 and older versions and go to the article Installing AdventureWorks Sample Database)

What is Wide World Importers Sample Database?

The WideWorldImporters database is a sample SQL Server database released by Microsoft for beginners to learn SQL Server with the sample data and database objects like the tables, indexes, triggers, stored procedures, functions, etc. It is meant for standard online transaction processing scenarios. This sample database and the data is developed for a fictional company called Wide World Importers. This sample database will be helpful for those who are new and learning relational database management systems (RDBMS) using SQL Server.

Every new version of SQL Server has a corresponding version of sample database released within few days to illustrate the new features of the SQL Server version. Till SQL Server 2014, Microsoft released sample databases in the name of a fictional cycle manufacturing company called AdventureWorks. After the release of SQL Server 2016, A new sample database has been introduced. It’s called WideWorldImporters.

Choosing The SQL Server Sample Database

As of today WideWorldImporters database is in version 1.0. This version is compatible with SQL Server 2016 or higher. The database comes in 2 major types:

  • WideWorldImporters: Sample database for online transaction processing (OLTP) which is commonly used SQL Server database engine.
  • WideWorldImportersDW: Sample database for online analytical processing. This is the data warehouse sample database useful for playing with business intelligence features of the SQL Server. The data warehouse sample database depends on the OLTP sample database. So this database needs to be installed along with the OLTP sample.

These two basic types are further segregated and released as multiple artifacts for various editions of SQL Server. Here are the artifacts released as sample database. You have to choose the database based on the edition of SQL Server you have installed and the type of the service online transaction processing (OLTP) or online analytical processing (OLAP).

Sample WideWorldImporters Database Artifacts

  • WideWorldImporters-Full.bak: Full sample database for OLTP and HTAP in backup format. This sample database is for the SQL Server enterprise edition, developer edition and the evaluation edition.
  • WideWorldImportersDW-Full.bak: Full data warehouse sample database for OLAP in backup format. This data warehouse sample is also for SQL Server enterprise edition, developer edition and the evaluation edition.
  • WideWorldImporters-Standard.bak: Sample OLTP database for standard edition of SQL Server in backup format.
  • WideWorldImportersDW-Standard.bak: Sample OLAP data warehouse database for SQL Server standard edition in backup format.
  • WideWorldImporters-Standard.bacpac: Sample standard OLTP database for Azure SQL Database Engine in bacpac format.
  • WideWorldImportersDW-Standard.bacpac: Sample standard OLAP data warehouse database for Azure SQL Database Engine in bacpac format.
  • Daily.ETL.ispac: SQL Server Integration Services (SSIS) package for Extraction, Transaction and Load (ETL) from both the OLTP and OLAP database samples. This ETL package is for enterprise, developer, evolution and standard editions of SQL Server.
  • Sample-scripts.zip: Collection of sample scripts for experimenting the features of SQL Server using the data and objects in theĀ  WideWorldImporters database.
  • Workload-drivers.zip: Sample windows application executables to be used along with the WideWorldImporters database.

Downloading WideWorldImporters Database

  1. You can download the WideWorldImporters Sample database from GitHub (https://github.com/Microsoft/sql-server-samples/releases/).
  2. From the list of database artifacts choose the file which you want and double-click to download it. I’ve installed SQL Server 2016 Developer Edition. So, I chose The full sample OLTP database (WideWorldImporters-Full.bak). This is in backup file format. It will be around 120 MB.
    WideWorldImporters Sample Database Download
  3. After downloading, place the backup file (WideWorldImporters-Full.bak) under the default SQL Server 2016 backup folder. The default backup folder will be something like C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\Backup\.
  4. Now, follow one of the below methods to restore this backup file to the SQL Server.

Installing / Restoring WideWorldImporters Database

A. Restore Sample Database Using SQL Scripts

  1. Login to the SSMS (SQL Server Management Studio).
  2. Open a new SQL Query Editor window
  3. Copy the below code and paste it into the query editor window.
    USE master
    RESTORE DATABASE WideWorldImporters
    FROM disk = 
    'C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\Backup\WideWorldImporters-Full.bak'
    WITH MOVE 'WWI_Primary' TO
    'C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\DATA\WideWorldImporters.mdf',
    MOVE 'WWI_UserData' TO
    'C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\DATA\WideWorldImporters_UserData.ndf',
    MOVE 'WWI_Log' TO
    'C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\DATA\WideWorldImporters.ldf',
    MOVE 'WWI_InMemory_Data_1' TO
    'C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\DATA\WideWorldImporters_InMemory_Data_1',
    REPLACE
    
  4. Click the Execute icon in the toolbar. You will see the status message as in the below picture once the database is successfully restored.
    WideWorldImporters Sample Database Restoration
  5. You can see the restored sample database (WideWorldImporters) in the Object Explorer under Databases folder. You may need to refresh the database list in the object explorer, if it is already open.
    WideWorldImporters Sample Database Restoration

B. Restore Sample Database Using SSMS GUI

  1. Login to the SQL Server Management Studio (SSMS).
  2. In the Object Explorer, right-click the Database folder and select Restore Database... This will launch the restore database screen.
    WideWorldImporters Sample Database Restoration
  3. In the Restore Database screen, choose Device and click the ellipsis button to launch the backup device selection screen.
  4. In the device selection window, press Add button to launch the file dialog. The file dialog will open the default SQL Server backup location. As we have already placed the backup file in that location, just select the backup file in the file dialog and press OK.
  5. Again press OK in the device selection window.
    WideWorldImporters Sample Database Restoration
  6. Now, the restore database window is filled with the details of the database to be restored from the backup.
    WideWorldImporters Sample Database Restoration
  7. Press the OK button in restore database window. The sample database backup is restored as a new database WideWorldImporters.
  8. You can see the restored sample database in the Object Explorer under Databases folder.

Generating More And Recent Data In WideWorldImporters Database

If you need more data in the Wide World Importers sample database, then you can use the inbuilt stored procedure DataLoadSimulation.PopulateDataToCurrentDate to generate more data. You can find more details about generating data in WideWorldImporters database here.

In my future article on SQL Server Basics series, I’ll be using this sample database for training.

Wide World Importers Sample Database

Reference

  • About WideWorldImporters sample database at https://docs.microsoft.com/en-us/sql/samples/wide-world-importers-what-is?view=sql-server-2017
  • https://docs.microsoft.com/en-us/sql/samples/wide-world-importers-generate-data?view=sql-server-2017
  • WideWorldImporters in GitHub at https://github.com/Microsoft/sql-server-samples/releases/


5 thoughts on “Installing Wide World Importers Sample Database”

  1. This is great presentation. It helped installing the Wide world database succesfully. Thank-you so much!

    Reply

Leave your thoughts...

This site uses Akismet to reduce spam. Learn how your comment data is processed.