We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a92fc2 commit 4c01fe4Copy full SHA for 4c01fe4
samples/databases/wide-world-importers/wwi-database-scripts/4-wwi-configure-required-database-objects.sql
@@ -3832,10 +3832,6 @@ ON Sales.OrderLines
3832
UnitPrice,
3833
PickedQuantity
3834
)';
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;
3839
SET @SQL += N';';
3840
EXECUTE (@SQL);
3841
END;
@@ -3853,10 +3849,6 @@ ON Sales.InvoiceLines
3853
3849
LineProfit,
3854
3850
LastEditedWhen
3855
3851
3856
3857
3858
3859
3860
3852
3861
3862
0 commit comments