Skip to content

Commit fa003a5

Browse files
ingebeumerrwestMSFT
authored andcommitted
Update wide-world-importers-dw-install-configure.md
1 parent 8120d64 commit fa003a5

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

docs/samples/wide-world-importers-dw-install-configure.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ monikerRange: ">=sql-server-2016||>=sql-server-linux-2017||=azure-sqldw-latest||
1414
[!INCLUDE[appliesto-ss-xxxx-asdw-pdw-md](../includes/appliesto-ss-xxxx-asdw-pdw-md.md)]
1515
Installation and configuration instructions for the WideWorldImportersDW database.
1616

17-
- [SQL Server 2016](https://www.microsoft.com/evalcenter/evaluate-sql-server-2016) (or higher) or [Azure SQL Database](https://azure.microsoft.com/services/sql-database/). To use the Full version of the sample, use SQL Server Evaluation/Developer/Enterprise Edition.
17+
- [SQL Server 2016](https://www.microsoft.com/evalcenter/evaluate-sql-server-2016) (or later) or [Azure SQL Database](https://azure.microsoft.com/services/sql-database/). To use the Full version of the sample, use SQL Server Evaluation/Developer/Enterprise Edition.
1818
- [SQL Server Management Studio](../ssms/download-sql-server-management-studio-ssms.md). For the best results use the June 2016 release or later.
1919

2020
## Download
@@ -48,7 +48,7 @@ To restore a backup to a SQL Server instance, you can use Management Studio.
4848
To import a bacpac into a new SQL Database, you can use Management Studio.
4949

5050
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.
51-
- See [this tutorial](/azure/azure-sql/database/single-database-create-quickstart) to create a database in minutes
51+
- See [this quickstart](/azure/azure-sql/database/single-database-create-quickstart) to create a database in minutes.
5252
2. Open SQL Server Management Studio and connect to your server in Azure.
5353
3. Right-click on the **Databases** node, and select **Import Data-Tier Application**.
5454
4. In the **Import Settings** select **Import from local disk** and select the bacpac of the sample database from your file system.
@@ -57,11 +57,13 @@ To import a bacpac into a new SQL Database, you can use Management Studio.
5757

5858
## Configuration
5959

60-
[Applies to SQL Server 2016 (and later) Developer/Evaluation/Enterprise Edition]
60+
Applies to [!INCLUDE[sssql16-md](../includes/sssql16-md.md)] (and later) Developer/Evaluation/Enterprise Edition
6161

6262
The sample database can make use of PolyBase to query files in Hadoop or Azure Blob Storage. However, that feature is not installed by default with SQL Server - you need to select it during SQL Server setup. Therefore, a post-installation step is required.
6363

6464
1. In SQL Server Management Studio, connect to the WideWorldImportersDW database and open a new query window.
6565
2. Run the following T-SQL command to enable the use of PolyBase in the database:
6666

67-
EXECUTE [Application].[Configuration_ApplyPolyBase]
67+
```tsql
68+
EXECUTE [Application].[Configuration_ApplyPolyBase];
69+
```

0 commit comments

Comments
 (0)