From 20648793c5cb0b5360f52644c72f2cddc25fd088 Mon Sep 17 00:00:00 2001 From: pmasl Date: Sat, 2 Nov 2019 17:06:37 -0700 Subject: [PATCH] Update Intelligent QP Demo Setup - Enlarging WideWorldImportersDW.sql --- ...telligent QP Demo Setup - Enlarging WideWorldImportersDW.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/features/intelligent-query-processing/Intelligent QP Demo Setup - Enlarging WideWorldImportersDW.sql b/samples/features/intelligent-query-processing/Intelligent QP Demo Setup - Enlarging WideWorldImportersDW.sql index fda12c26..18915ef7 100644 --- a/samples/features/intelligent-query-processing/Intelligent QP Demo Setup - Enlarging WideWorldImportersDW.sql +++ b/samples/features/intelligent-query-processing/Intelligent QP Demo Setup - Enlarging WideWorldImportersDW.sql @@ -25,7 +25,7 @@ IF OBJECT_ID('Fact.OrderHistory') IS NULL BEGIN END; ALTER TABLE Fact.OrderHistory -ADD CONSTRAINT PK_Fact_OrderHistory PRIMARY KEY NONCLUSTERED([Order Key] ASC, [Order Date Key] ASC)WITH(DATA_COMPRESSION=PAGE); +ADD CONSTRAINT PK_Fact_OrderHistory PRIMARY KEY NONCLUSTERED([Order Key] ASC, [Order Date Key] ASC) WITH (DATA_COMPRESSION = PAGE); GO CREATE INDEX IX_Stock_Item_Key