Skip to content

Commit 4c01fe4

Browse files
committed
removing compress_delay from NCCI
1 parent 6a92fc2 commit 4c01fe4

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

samples/databases/wide-world-importers/wwi-database-scripts/4-wwi-configure-required-database-objects.sql

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3832,10 +3832,6 @@ ON Sales.OrderLines
38323832
UnitPrice,
38333833
PickedQuantity
38343834
)';
3835-
IF CAST(SERVERPROPERTY(N'EngineEdition') AS int) <> 5 -- Not an Azure SQL DB
3836-
BEGIN
3837-
SET @SQL += N' WITH (COMPRESSION_DELAY = 10)';
3838-
END;
38393835
SET @SQL += N';';
38403836
EXECUTE (@SQL);
38413837
END;
@@ -3853,10 +3849,6 @@ ON Sales.InvoiceLines
38533849
LineProfit,
38543850
LastEditedWhen
38553851
)';
3856-
IF CAST(SERVERPROPERTY(N'EngineEdition') AS int) <> 5 -- Not an Azure SQL DB
3857-
BEGIN
3858-
SET @SQL += N' WITH (COMPRESSION_DELAY = 10)';
3859-
END;
38603852
SET @SQL += N';';
38613853
EXECUTE (@SQL);
38623854
END;

0 commit comments

Comments
 (0)