Skip to content

Commit ba4d514

Browse files
committed
Merge branch 'master' into jodebrui
2 parents 07e6bc3 + 6a75ad6 commit ba4d514

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

samples/databases/wide-world-importers/documentation/wwi-olap-installation.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@ Download the sample WideWorldImportersDW database backup/bacpac that corresponds
1414

1515
Source code to recreate the sample database is available from the following location. Note that data population is based on ETL from the OLTP database (WideWorldImporters):
1616

17-
[wide-world-importers](https://github.com/Microsoft/sql-server-samples/tree/master/samples/databases/wide-world-importers/wwi-dw-database-scripts)
17+
[wide-world-importers-source](https://github.com/Microsoft/sql-server-samples/tree/master/samples/databases/wide-world-importers/wwi-dw-database-scripts)
1818

1919
## Install
2020

2121

2222
### SQL Server
2323

2424
To restore a backup to a SQL Server instance, you can use Management Studio.
25+
2526
1. Open SQL Server Management Studio and connect to the target SQL Server instance.
2627
2. Right-click on the **Databases** node, and select **Restore Database**.
2728
3. Select **Device** and click on the button **...**
@@ -32,6 +33,7 @@ To restore a backup to a SQL Server instance, you can use Management Studio.
3233
### Azure SQL Database
3334

3435
To import a bacpac into a new SQL Database, you can use Management Studio.
36+
3537
1. (optional) If you do not yet have a SQL Server in Azure, navigate to the [Azure portal](https://portal.azure.com/) and create a new SQL Database. In the process of create a database, you will create a server. Make note of the server.
3638
- See [this tutorial](https://azure.microsoft.com/documentation/articles/sql-database-get-started/) to create a database in minutes
3739
2. Open SQL Server Management Studio and connect to your server in Azure.

samples/databases/wide-world-importers/documentation/wwi-olap-sql-features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ WideWorldImportersDW is designed to showcase many of the key features of SQL Ser
88

99
PolyBase is used to combine sales information from WideWorldImportersDW with a public data set about demographics to understand which cities might be of interest for further expansion of sales.
1010

11-
To enable the use of PolyBase in the sample database, make sure it is installed, and run the following statement in the database:
11+
To enable the use of PolyBase in the sample database, make sure it is installed, and run the following stored procedure in the database:
1212

1313
EXEC [Application].[Configuration_ApplyPolybase]
1414

15-
This will create an external table `dbo.CityPopulationStatistics` that references a public data set that contains population data for cities in the United States, hosted in Azure blob storage. The following query returns the data from that external data set:
15+
This will create an external table `dbo.CityPopulationStatistics` that references a public data set that contains population data for cities in the United States, hosted in Azure blob storage. You are encouraged to review the code in the stored procedure to understand the configuration process. If you want to host your own data in Azure blob storage and keep it secure from general public access, you will need to undertake additional configuration steps. The following query returns the data from that external data set:
1616

1717
SELECT CityID, StateProvinceCode, CityName, YearNumber, LatestRecordedPopulation FROM dbo.CityPopulationStatistics;
1818

samples/databases/wide-world-importers/documentation/wwi-oltp-htap-installation.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Source code to recreate the sample database is available from the following loca
2323
### SQL Server
2424

2525
To restore a backup to a SQL Server instance, you can use Management Studio.
26+
2627
1. Open SQL Server Management Studio and connect to the target SQL Server instance.
2728
2. Right-click on the **Databases** node, and select **Restore Database**.
2829
3. Select **Device** and click on the button **...**
@@ -33,6 +34,7 @@ To restore a backup to a SQL Server instance, you can use Management Studio.
3334
### Azure SQL Database
3435

3536
To import a bacpac into a new SQL Database, you can use Management Studio.
37+
3638
1. (optional) If you do not yet have a SQL Server in Azure, navigate to the [Azure portal](https://portal.azure.com/) and create a new SQL Database. In the process of create a database, you will create a server. Make note of the server.
3739
- See [this tutorial](https://azure.microsoft.com/documentation/articles/sql-database-get-started/) to create a database in minutes
3840
2. Open SQL Server Management Studio and connect to your server in Azure.
1.16 KB
Binary file not shown.

0 commit comments

Comments
 (0)