From 834bc85756fc55df8bba06f895af211cefd754ad Mon Sep 17 00:00:00 2001 From: Jos de Bruijn Date: Thu, 15 Jun 2017 14:53:58 -0700 Subject: [PATCH] aligning start date with v1 start date --- .../Script.PostDeployment1.sql | 24 +++++-------------- 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/samples/databases/wide-world-importers/wwi-ssdt/wwi-ssdt/PostDeploymentScripts/Script.PostDeployment1.sql b/samples/databases/wide-world-importers/wwi-ssdt/wwi-ssdt/PostDeploymentScripts/Script.PostDeployment1.sql index 1d35ac1f..39e665f1 100644 --- a/samples/databases/wide-world-importers/wwi-ssdt/wwi-ssdt/PostDeploymentScripts/Script.PostDeployment1.sql +++ b/samples/databases/wide-world-importers/wwi-ssdt/wwi-ssdt/PostDeploymentScripts/Script.PostDeployment1.sql @@ -118,11 +118,9 @@ GO EXEC Sequences.ReseedAllSequences; GO --- This final set of code populates the database with sample data. --- It can take a while to run, depending on your computer it could be --- a few hours. If all you want is to create the database without data --- then just comment this last section out -PRINT 'Populating Data - this may take quite a while so be patient! two to three hours or more is common' +-- This final set of code populates the database with a limited set of sample data. +-- To obtain the full set of sample data, follow the instructions in the documentation. +PRINT 'Populating limited data set.' GO SET NOCOUNT ON; @@ -163,25 +161,15 @@ SET NOCOUNT ON; depricated in future releases. */ EXEC DataLoadSimulation.DailyProcessToCreateHistory - @StartDate = '20170101', - @EndDate = '20170430', - @AverageNumberOfCustomerOrdersPerDay = 20, - @SaturdayPercentageOfNormalWorkDay = 25, - @SundayPercentageOfNormalWorkDay = 0, - @UpdateCustomFields = 1, - @IsSilentMode = 0, - @AreDatesPrinted = 1; -/* -EXEC DataLoadSimulation.DailyProcessToCreateHistory - @StartDate = '20161101', - @EndDate = '20170131', + @StartDate = '20130101', + @EndDate = '20130201', @AverageNumberOfCustomerOrdersPerDay = 60, @SaturdayPercentageOfNormalWorkDay = 25, @SundayPercentageOfNormalWorkDay = 0, @UpdateCustomFields = 1, @IsSilentMode = 0, @AreDatesPrinted = 1; -*/ + /*