Skip to content

Commit 47b6354

Browse files
committed
clarified practice for configuring PolyBase
1 parent 19c6512 commit 47b6354

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

0 commit comments

Comments
 (0)