├── Database └── AdventureWorks │ ├── AdventureWorksDW2020.bak │ ├── AdventureWorksDW2020ForSQLServer2016.bak │ ├── Readme.md │ └── Update_AdventureWorksDW_Data.sql ├── JSON └── AdventureWorks │ ├── SalesLT_Address_20200716.json │ ├── SalesLT_CustomerAddress_20200716.json │ ├── SalesLT_Customer_20200716.json │ ├── SalesLT_ProductCategory_20200716.json │ ├── SalesLT_ProductDescription_20200716.json │ ├── SalesLT_ProductModelProductDescription_20200716.json │ ├── SalesLT_ProductModel_20200716.json │ ├── SalesLT_Product_20200716.json │ ├── SalesLT_SalesOrderDetail_20200716.json │ └── SalesLT_SalesOrderHeader_20200716.json ├── Parquet └── AdventureWorks │ ├── Readme.md │ ├── Sales_SalesOrderHeader_20200723.parquet │ └── Sales_SalesTerritory_20200723.parquet └── README.md /Database/AdventureWorks/AdventureWorksDW2020.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techtalkcorner/SampleDemoFiles/897748622f520bc686733f50835c4021fdd9397c/Database/AdventureWorks/AdventureWorksDW2020.bak -------------------------------------------------------------------------------- /Database/AdventureWorks/AdventureWorksDW2020ForSQLServer2016.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techtalkcorner/SampleDemoFiles/897748622f520bc686733f50835c4021fdd9397c/Database/AdventureWorks/AdventureWorksDW2020ForSQLServer2016.bak -------------------------------------------------------------------------------- /Database/AdventureWorks/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Database/AdventureWorks/Update_AdventureWorksDW_Data.sql: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Description: 4 | 5 | ---------- The script updates the date colums for the AdventureWorksDW database with recent dates and it inserts new dates in the date dimension. 6 | 7 | ---------- It uses the current year as the last year for the data in the Adventure Works database. 8 | 9 | ---------- AdventureWorksDW original database contains data from 2010 to 2014, ths script will update the data to be (current year - 4 yars) to current year 10 | 11 | ---------- The script deletes leap year records from FactCurrencyRate and FactProductInventory to avoid having constraint issues 12 | 13 | ---------- For example: if the current year is 2021, the data after running the script will be from 2017 to 2021. 14 | 15 | 16 | 17 | Author: 18 | 19 | ---------- David Alzamendi (https://techtalkcorner.com) 20 | 21 | 22 | 23 | Date: 24 | 25 | ---------- 19/11/2020 26 | 27 | */ 28 | 29 | 30 | 31 | -- Declare variables 32 | 33 | declare @CurrentYear int = year(getdate()) 34 | 35 | declare @LastDayCurrentYear date = DATEADD (dd, -1, DATEADD(yy, DATEDIFF(yy, 0, GETDATE()) +1, 0)) 36 | 37 | declare @MaxDateInDW int 38 | 39 | select @MaxDateInDW = MAX(year(orderdate)) from [dbo].[FactInternetSales] 40 | 41 | declare @YearsToAdd int = @CurrentYear - @MaxDateInDW 42 | 43 | 44 | 45 | if (@YearsToAdd>0) 46 | 47 | begin 48 | 49 | -- Delete leap year records (February 29) 50 | delete from FactCurrencyRate where month([Date]) = 2 and day([Date]) = 29 51 | delete from FactProductInventory where month([MovementDate]) = 2 and day([MovementDate]) = 29 52 | 53 | 54 | -- Drop foreign keys 55 | 56 | alter table FactCurrencyRate drop constraint FK_FactCurrencyRate_DimDate 57 | 58 | alter table FactFinance drop constraint FK_FactFinance_DimDate 59 | 60 | alter table FactInternetSales drop constraint FK_FactInternetSales_DimDate 61 | 62 | alter table FactInternetSales drop constraint FK_FactInternetSales_DimDate1 63 | 64 | alter table FactInternetSales drop constraint FK_FactInternetSales_DimDate2 65 | 66 | alter table FactProductInventory drop constraint FK_FactProductInventory_DimDate 67 | 68 | alter table FactResellerSales drop constraint FK_FactResellerSales_DimDate 69 | 70 | alter table FactSurveyResponse drop constraint FK_FactSurveyResponse_DateKey 71 | 72 | -- Include more dates in Date dimension, the existing dates are not being replaced 73 | 74 | -------------------------------------- 75 | 76 | --Populates the date dimension 77 | 78 | ------------------------------------- 79 | 80 | DECLARE @startdate DATE = '2015-01-01' --change start date if required 81 | 82 | ,@enddate DATE = @LastDayCurrentYear --change end date if required 83 | 84 | 85 | 86 | DECLARE @datelist TABLE (FullDate DATE) 87 | 88 | 89 | 90 | --recursive date query 91 | 92 | ;WITH dt_cte 93 | 94 | AS 95 | 96 | ( 97 | 98 | SELECT @startdate AS FullDate 99 | 100 | UNION ALL 101 | 102 | SELECT DATEADD(DAY,1,FullDate) AS FullDate 103 | 104 | FROM dt_cte 105 | 106 | WHERE dt_cte.FullDate < @enddate 107 | 108 | ) 109 | 110 | INSERT INTO @datelist 111 | 112 | SELECT FullDate FROM dt_cte 113 | 114 | OPTION (MAXRECURSION 0) 115 | 116 | 117 | 118 | --Populate Date Dimension 119 | 120 | SET DATEFIRST 7; -- Set the first day of the week to Monday 121 | 122 | 123 | 124 | INSERT INTO [dbo].[dimdate] 125 | 126 | ( [DateKey] 127 | 128 | ,[FullDateAlternateKey] 129 | 130 | ,[DayNumberOfWeek] 131 | 132 | ,[EnglishDayNameOfWeek] 133 | 134 | ,[SpanishDayNameOfWeek] 135 | 136 | ,[FrenchDayNameOfWeek] 137 | 138 | ,[DayNumberOfMonth] 139 | 140 | ,[DayNumberOfYear] 141 | 142 | ,[WeekNumberOfYear] 143 | 144 | ,[EnglishMonthName] 145 | 146 | ,[SpanishMonthName] 147 | 148 | ,[FrenchMonthName] 149 | 150 | ,[MonthNumberOfYear] 151 | 152 | ,[CalendarQuarter] 153 | 154 | ,[CalendarYear] 155 | 156 | ,[CalendarSemester] 157 | 158 | ,[FiscalQuarter] 159 | 160 | ,[FiscalYear] 161 | 162 | ,[FiscalSemester] 163 | 164 | 165 | 166 | ) 167 | 168 | SELECT CONVERT(INT,CONVERT(VARCHAR,dl.FullDate,112)) as DateKey 169 | 170 | ,dl.FullDate 171 | 172 | ,DATEPART(dw,dl.FullDate) as DayOfWeekNumber 173 | 174 | ,DATENAME(weekday,dl.FullDate) as DayOfWeekName 175 | 176 | ,case DATENAME(weekday,dl.FullDate) 177 | 178 | when 'Monday' then 'Lunes' 179 | 180 | when 'Tuesday' then 'Martes' 181 | 182 | when 'Wednesday' then 'Miércoles' 183 | 184 | when 'Thursday' then 'Jueves' 185 | 186 | when 'Friday' then 'Viernes' 187 | 188 | when 'Saturday' then 'Sábado' 189 | 190 | when 'Sunday' then 'Doming' 191 | 192 | end as SpanishDayNameOfWeek 193 | 194 | ,case DATENAME(weekday,dl.FullDate) 195 | 196 | when 'Monday' then 'Lundi' 197 | 198 | when 'Tuesday' then 'Mardi' 199 | 200 | when 'Wednesday' then 'Mercredi' 201 | 202 | when 'Thursday' then 'Jeudi' 203 | 204 | when 'Friday' then 'Vendredi' 205 | 206 | when 'Saturday' then 'Samedi' 207 | 208 | when 'Sunday' then 'Dimanche' 209 | 210 | end as SpanishDayNameOfWeek 211 | 212 | ,DATEPART(d,dl.FullDate) as DayOfMonthNumber 213 | 214 | ,DATEPART(dy,dl.FullDate) as DayOfYearNumber 215 | 216 | ,DATEPART(wk, dl.FullDate) as WeekOfYearNumber 217 | 218 | ,DATENAME(MONTH,dl.FullDate) as [MonthName] 219 | 220 | ,case DATENAME(MONTH,dl.FullDate) 221 | 222 | when 'January' then 'Enero' 223 | 224 | when 'February' then 'Febrero' 225 | 226 | when 'March' then 'Marzo' 227 | 228 | when 'April' then 'Abril' 229 | 230 | when 'May' then 'Mayo' 231 | 232 | when 'June' then 'Junio' 233 | 234 | when 'July' then 'Julio' 235 | 236 | when 'August' then 'Agosto' 237 | 238 | when 'September' then 'Septiembre' 239 | 240 | when 'October' then 'Octubre' 241 | 242 | when 'November' then 'Noviembre' 243 | 244 | when 'December' then 'Diciembre' 245 | 246 | end as SpanishMonthName 247 | 248 | 249 | 250 | ,case DATENAME(MONTH,dl.FullDate) 251 | 252 | when 'January' then 'Janvier' 253 | 254 | when 'February' then 'Février' 255 | 256 | when 'March' then 'Mars' 257 | 258 | when 'April' then 'Avril' 259 | 260 | when 'May' then 'Mai' 261 | 262 | when 'June' then 'Juin' 263 | 264 | when 'July' then 'Juillet' 265 | 266 | when 'August' then 'Août' 267 | 268 | when 'September' then 'Septembre' 269 | 270 | when 'October' then 'Octobre' 271 | 272 | when 'November' then 'Novembre' 273 | 274 | when 'December' then 'Décembre' 275 | 276 | end as FrenchMonthName 277 | 278 | 279 | 280 | ,MONTH(dl.FullDate) as MonthNumber 281 | 282 | ,DATEPART(qq, dl.FullDate) as CalendarQuarter 283 | 284 | ,YEAR(dl.FullDate) as CalendarYear 285 | 286 | ,CASE DATEPART(qq, dl.FullDate) 287 | 288 | WHEN 1 THEN 1 289 | 290 | WHEN 2 THEN 1 291 | 292 | WHEN 3 THEN 2 293 | 294 | WHEN 4 THEN 2 295 | 296 | END AS CalendarSemester 297 | 298 | ,CASE DATEPART(qq, dl.FullDate) 299 | 300 | WHEN 1 THEN 3 301 | 302 | WHEN 2 THEN 4 303 | 304 | WHEN 3 THEN 1 305 | 306 | WHEN 4 THEN 2 307 | 308 | END as FiscalQuarter 309 | 310 | 311 | 312 | ,CASE DATEPART(qq, dl.FullDate) 313 | 314 | WHEN 1 THEN YEAR(dl.FullDate) -1 315 | 316 | WHEN 2 THEN YEAR(dl.FullDate) -1 317 | 318 | WHEN 3 THEN YEAR(dl.FullDate) 319 | 320 | WHEN 4 THEN YEAR(dl.FullDate) 321 | 322 | END as FiscalYear 323 | 324 | ,CASE DATEPART(qq, dl.FullDate) 325 | 326 | WHEN 1 THEN 2 327 | 328 | WHEN 2 THEN 2 329 | 330 | WHEN 3 THEN 1 331 | 332 | WHEN 4 THEN 1 333 | 334 | END as FiscalSemester 335 | 336 | 337 | 338 | FROM @datelist dl 339 | 340 | LEFT JOIN [dbo].[dimdate] dt 341 | 342 | ON dt.FullDateAlternateKey = dl.FullDate 343 | 344 | WHERE dt.DateKey IS NULL 345 | 346 | ORDER BY DateKey DESC 347 | 348 | 349 | 350 | 351 | 352 | -- Date (data type: date) 353 | 354 | -- Birth Date and Hire Date are not being updated 355 | 356 | update DimCustomer set DateFirstPurchase = case when DateFirstPurchase is not null then dateadd(year,@YearsToAdd,DateFirstPurchase) end 357 | 358 | update DimEmployee set StartDate = case when StartDate is not null then dateadd(year,@YearsToAdd,StartDate) end 359 | 360 | update DimEmployee set EndDate = case when EndDate is not null then dateadd(year,@YearsToAdd,EndDate) end 361 | 362 | update DimProduct set StartDate = case when StartDate is not null then dateadd(year,@YearsToAdd,StartDate) end 363 | 364 | update DimProduct set EndDate = case when EndDate is not null then dateadd(year,@YearsToAdd,EndDate) end 365 | 366 | update DimPromotion set StartDate = case when StartDate is not null then dateadd(year,@YearsToAdd,StartDate) end 367 | 368 | update DimPromotion set EndDate = case when EndDate is not null then dateadd(year,@YearsToAdd,EndDate) end 369 | 370 | update FactCallCenter set Date = case when Date is not null then dateadd(year,@YearsToAdd,Date) end 371 | 372 | update FactCurrencyRate set Date = case when Date is not null then dateadd(year,@YearsToAdd,Date) end 373 | 374 | update FactFinance set Date = case when Date is not null then dateadd(year,@YearsToAdd,Date) end 375 | 376 | update FactInternetSales set OrderDate = case when OrderDate is not null then dateadd(year,@YearsToAdd,OrderDate) end 377 | 378 | update FactInternetSales set DueDate = case when DueDate is not null then dateadd(year,@YearsToAdd,DueDate) end 379 | 380 | update FactInternetSales set ShipDate = case when ShipDate is not null then dateadd(year,@YearsToAdd,ShipDate) end 381 | 382 | update FactProductInventory set MovementDate = case when MovementDate is not null then dateadd(year,@YearsToAdd,MovementDate) end 383 | 384 | update FactResellerSales set OrderDate = case when OrderDate is not null then dateadd(year,@YearsToAdd,OrderDate) end 385 | 386 | update FactResellerSales set DueDate = case when DueDate is not null then dateadd(year,@YearsToAdd,DueDate) end 387 | 388 | update FactResellerSales set ShipDate = case when ShipDate is not null then dateadd(year,@YearsToAdd,ShipDate) end 389 | 390 | update FactSalesQuota set Date = case when Date is not null then dateadd(year,@YearsToAdd,Date) end 391 | 392 | update FactSurveyResponse set Date = case when Date is not null then dateadd(year,@YearsToAdd,Date) end 393 | 394 | 395 | 396 | -- DateKey (data type: int) 397 | 398 | update FactCallCenter set DateKey = case when DateKey is not null then CAST(convert(varchar,[Date],112) as int) end 399 | 400 | update FactCurrencyRate set DateKey = case when DateKey is not null then CAST(convert(varchar,[Date],112) as int) end 401 | 402 | update FactFinance set DateKey = case when DateKey is not null then CAST(convert(varchar,[Date],112) as int) end 403 | 404 | update FactInternetSales set DueDateKey = case when DueDateKey is not null then CAST(convert(varchar,[DueDate],112) as int) end 405 | 406 | update FactInternetSales set OrderDateKey = case when OrderDateKey is not null then CAST(convert(varchar,[OrderDate],112) as int) end 407 | 408 | update FactInternetSales set ShipDateKey = case when ShipDateKey is not null then CAST(convert(varchar,[ShipDate],112) as int) end 409 | 410 | update FactProductInventory set DateKey = case when DateKey is not null then CAST(convert(varchar,[MovementDate],112) as int) end 411 | 412 | update FactResellerSales set DueDateKey = case when DueDateKey is not null then CAST(convert(varchar,[ShipDate],112) as int) end 413 | 414 | update FactResellerSales set OrderDateKey = case when OrderDateKey is not null then CAST(convert(varchar,[ShipDate],112) as int) end 415 | 416 | update FactResellerSales set ShipDateKey = case when ShipDateKey is not null then CAST(convert(varchar,[ShipDate],112) as int) end 417 | 418 | update FactSalesQuota set DateKey = case when DateKey is not null then CAST(convert(varchar,[Date],112) as int) end 419 | 420 | update FactSurveyResponse set DateKey = case when DateKey is not null then CAST(convert(varchar,[Date],112) as int) end 421 | 422 | 423 | 424 | -- Update tables where year is a number in the format YYYY 425 | 426 | update FactSalesQuota set CalendarYear = case when CalendarYear is not null then @YearsToAdd + CalendarYear end 427 | 428 | update DimReseller set FirstOrderYear = case when FirstOrderYear is not null then @YearsToAdd + FirstOrderYear end 429 | 430 | update DimReseller set LastOrderYear = case when LastOrderYear is not null then @YearsToAdd + LastOrderYear end 431 | 432 | update DimReseller set YearOpened = case when YearOpened is not null then @YearsToAdd + YearOpened end 433 | 434 | 435 | -- Add back CONSTRAINTS 436 | 437 | ALTER TABLE [dbo].[FactCurrencyRate] WITH CHECK ADD CONSTRAINT [FK_FactCurrencyRate_DimDate] FOREIGN KEY([DateKey]) 438 | REFERENCES [dbo].[DimDate] ([DateKey]) 439 | 440 | ALTER TABLE [dbo].[FactCurrencyRate] CHECK CONSTRAINT [FK_FactCurrencyRate_DimDate] 441 | 442 | ALTER TABLE [dbo].[FactFinance] WITH CHECK ADD CONSTRAINT [FK_FactFinance_DimDate] FOREIGN KEY([DateKey]) 443 | REFERENCES [dbo].[DimDate] ([DateKey]) 444 | 445 | ALTER TABLE [dbo].[FactFinance] CHECK CONSTRAINT [FK_FactFinance_DimDate] 446 | 447 | ALTER TABLE [dbo].[FactInternetSales] WITH CHECK ADD CONSTRAINT [FK_FactInternetSales_DimDate] FOREIGN KEY([OrderDateKey]) 448 | REFERENCES [dbo].[DimDate] ([DateKey]) 449 | 450 | ALTER TABLE [dbo].[FactInternetSales] CHECK CONSTRAINT [FK_FactInternetSales_DimDate] 451 | 452 | ALTER TABLE [dbo].[FactInternetSales] WITH CHECK ADD CONSTRAINT [FK_FactInternetSales_DimDate1] FOREIGN KEY([DueDateKey]) 453 | REFERENCES [dbo].[DimDate] ([DateKey]) 454 | 455 | ALTER TABLE [dbo].[FactInternetSales] CHECK CONSTRAINT [FK_FactInternetSales_DimDate1] 456 | 457 | ALTER TABLE [dbo].[FactInternetSales] WITH CHECK ADD CONSTRAINT [FK_FactInternetSales_DimDate2] FOREIGN KEY([ShipDateKey]) 458 | REFERENCES [dbo].[DimDate] ([DateKey]) 459 | 460 | ALTER TABLE [dbo].[FactInternetSales] CHECK CONSTRAINT [FK_FactInternetSales_DimDate2] 461 | 462 | ALTER TABLE [dbo].[FactProductInventory] WITH CHECK ADD CONSTRAINT [FK_FactProductInventory_DimDate] FOREIGN KEY([DateKey]) 463 | REFERENCES [dbo].[DimDate] ([DateKey]) 464 | 465 | ALTER TABLE [dbo].[FactProductInventory] CHECK CONSTRAINT [FK_FactProductInventory_DimDate] 466 | 467 | ALTER TABLE [dbo].[FactResellerSales] WITH CHECK ADD CONSTRAINT [FK_FactResellerSales_DimDate] FOREIGN KEY([OrderDateKey]) 468 | REFERENCES [dbo].[DimDate] ([DateKey]) 469 | 470 | ALTER TABLE [dbo].[FactResellerSales] CHECK CONSTRAINT [FK_FactResellerSales_DimDate] 471 | 472 | ALTER TABLE [dbo].[FactSurveyResponse] WITH CHECK ADD CONSTRAINT [FK_FactSurveyResponse_DateKey] FOREIGN KEY([DateKey]) 473 | REFERENCES [dbo].[DimDate] ([DateKey]) 474 | 475 | ALTER TABLE [dbo].[FactSurveyResponse] CHECK CONSTRAINT [FK_FactSurveyResponse_DateKey] 476 | 477 | end 478 | -------------------------------------------------------------------------------- /JSON/AdventureWorks/SalesLT_CustomerAddress_20200716.json: -------------------------------------------------------------------------------- 1 | {"CustomerID":29485,"AddressID":1086,"AddressType":"Main Office","rowguid":"16765338-dbe4-4421-b5e9-3836b9278e63","ModifiedDate":"2007-09-01T00:00:00"} 2 | {"CustomerID":29486,"AddressID":621,"AddressType":"Main Office","rowguid":"22b3e910-14af-4ed5-8b4d-23bbe757414d","ModifiedDate":"2005-09-01T00:00:00"} 3 | {"CustomerID":29489,"AddressID":1069,"AddressType":"Main Office","rowguid":"a095c88b-d7e6-4178-a078-2eca44214801","ModifiedDate":"2005-07-01T00:00:00"} 4 | {"CustomerID":29490,"AddressID":887,"AddressType":"Main Office","rowguid":"f12e1702-d897-4035-b614-0fe2c72168a9","ModifiedDate":"2006-09-01T00:00:00"} 5 | {"CustomerID":29492,"AddressID":618,"AddressType":"Main Office","rowguid":"5b3b3eb2-3f43-47ed-a20c-23697dabf23b","ModifiedDate":"2006-12-01T00:00:00"} 6 | {"CustomerID":29494,"AddressID":537,"AddressType":"Main Office","rowguid":"492d92b6-31af-47ea-8e00-7c11c7ccc20d","ModifiedDate":"2005-09-01T00:00:00"} 7 | {"CustomerID":29496,"AddressID":1072,"AddressType":"Main Office","rowguid":"0a66b0f3-24bc-4148-9661-26e935cec99a","ModifiedDate":"2007-09-01T00:00:00"} 8 | {"CustomerID":29497,"AddressID":889,"AddressType":"Main Office","rowguid":"7e0b56fd-7324-4898-bedb-2f56a843bb0f","ModifiedDate":"2005-07-01T00:00:00"} 9 | {"CustomerID":29499,"AddressID":527,"AddressType":"Main Office","rowguid":"c90cb0c3-976a-4075-a2b9-13136f4f1a92","ModifiedDate":"2006-09-01T00:00:00"} 10 | {"CustomerID":29502,"AddressID":893,"AddressType":"Main Office","rowguid":"8acb1c6a-7cdf-417b-afd5-9f4c642f3c7e","ModifiedDate":"2007-07-01T00:00:00"} 11 | {"CustomerID":29503,"AddressID":32,"AddressType":"Shipping","rowguid":"be00ffc6-194b-44e9-a129-dfbeb8f1301f","ModifiedDate":"2006-08-01T00:00:00"} 12 | {"CustomerID":29503,"AddressID":541,"AddressType":"Main Office","rowguid":"6811dbe3-1f02-440c-932e-a54f403b3e51","ModifiedDate":"2006-08-01T00:00:00"} 13 | {"CustomerID":29505,"AddressID":1083,"AddressType":"Main Office","rowguid":"740a06af-77f1-45ca-b284-38537324f86a","ModifiedDate":"2007-05-01T00:00:00"} 14 | {"CustomerID":29506,"AddressID":1082,"AddressType":"Main Office","rowguid":"dd51a14d-45f5-44e9-bf3b-260f0e08e545","ModifiedDate":"2007-08-01T00:00:00"} 15 | {"CustomerID":29508,"AddressID":619,"AddressType":"Main Office","rowguid":"2dd326f6-02da-44b7-96fb-b3a86067c5ee","ModifiedDate":"2005-12-01T00:00:00"} 16 | {"CustomerID":29510,"AddressID":540,"AddressType":"Main Office","rowguid":"af6dcc27-dccb-40de-9445-3f4990aabd28","ModifiedDate":"2005-08-01T00:00:00"} 17 | {"CustomerID":29511,"AddressID":1046,"AddressType":"Main Office","rowguid":"61cb8c51-7c96-4306-8050-56c90504972b","ModifiedDate":"2005-08-01T00:00:00"} 18 | {"CustomerID":29515,"AddressID":504,"AddressType":"Main Office","rowguid":"a5f1a232-3cce-4149-9892-de9895bc0f07","ModifiedDate":"2005-08-01T00:00:00"} 19 | {"CustomerID":29517,"AddressID":794,"AddressType":"Main Office","rowguid":"db4d3044-7bf4-4d65-b48e-3ff927a842f0","ModifiedDate":"2007-08-01T00:00:00"} 20 | {"CustomerID":29521,"AddressID":1054,"AddressType":"Main Office","rowguid":"c0f708c3-9147-44c4-b6cb-fd5b765343c0","ModifiedDate":"2005-08-01T00:00:00"} 21 | {"CustomerID":29522,"AddressID":1040,"AddressType":"Main Office","rowguid":"997006d9-674c-4153-86d0-2efa7e1febf4","ModifiedDate":"2005-08-01T00:00:00"} 22 | {"CustomerID":29523,"AddressID":593,"AddressType":"Main Office","rowguid":"15d1e8b0-e626-465c-a565-98500b56c077","ModifiedDate":"2005-08-01T00:00:00"} 23 | {"CustomerID":29524,"AddressID":599,"AddressType":"Main Office","rowguid":"75724647-82a0-49c5-a841-f991bbaebe18","ModifiedDate":"2007-08-01T00:00:00"} 24 | {"CustomerID":29525,"AddressID":1049,"AddressType":"Main Office","rowguid":"e1e5af17-d958-4a88-b537-444f2be24538","ModifiedDate":"2005-09-01T00:00:00"} 25 | {"CustomerID":29527,"AddressID":512,"AddressType":"Main Office","rowguid":"decef565-c5d1-4396-a45f-27c635833b31","ModifiedDate":"2007-09-01T00:00:00"} 26 | {"CustomerID":29528,"AddressID":788,"AddressType":"Main Office","rowguid":"65c98567-6a79-44f0-be71-264547362402","ModifiedDate":"2006-09-01T00:00:00"} 27 | {"CustomerID":29530,"AddressID":495,"AddressType":"Main Office","rowguid":"2a12a463-dca0-480f-83d6-ab58a43e1d24","ModifiedDate":"2006-09-01T00:00:00"} 28 | {"CustomerID":29531,"AddressID":1061,"AddressType":"Main Office","rowguid":"14e08cfe-cf7e-4e76-a5fd-7624cae2482e","ModifiedDate":"2005-12-01T00:00:00"} 29 | {"CustomerID":29532,"AddressID":881,"AddressType":"Main Office","rowguid":"4ac4ecbe-4775-492a-8776-41237d7c6aba","ModifiedDate":"2006-10-01T00:00:00"} 30 | {"CustomerID":29533,"AddressID":801,"AddressType":"Main Office","rowguid":"cd6229c0-a0fa-4a48-b4e1-d1c02437caa8","ModifiedDate":"2005-07-01T00:00:00"} 31 | {"CustomerID":29535,"AddressID":591,"AddressType":"Main Office","rowguid":"26821e31-0e0e-4d73-a494-34f630b636c4","ModifiedDate":"2006-09-01T00:00:00"} 32 | {"CustomerID":29536,"AddressID":786,"AddressType":"Main Office","rowguid":"efa08457-c8d8-4daf-a27f-bf6dfaf76863","ModifiedDate":"2006-12-01T00:00:00"} 33 | {"CustomerID":29539,"AddressID":480,"AddressType":"Main Office","rowguid":"6f7dda53-7b9d-4710-aeb9-20ea0ea5098b","ModifiedDate":"2005-08-01T00:00:00"} 34 | {"CustomerID":29541,"AddressID":467,"AddressType":"Main Office","rowguid":"22b4d3bb-6af2-4d40-8f84-10fad8d5a74f","ModifiedDate":"2005-11-01T00:00:00"} 35 | {"CustomerID":29544,"AddressID":519,"AddressType":"Main Office","rowguid":"b1d3b3fa-e485-4f4c-b781-b4efb273dedc","ModifiedDate":"2006-08-01T00:00:00"} 36 | {"CustomerID":29545,"AddressID":11,"AddressType":"Shipping","rowguid":"3d88495a-776e-414a-a91e-6d8979a35d86","ModifiedDate":"2007-04-01T00:00:00"} 37 | {"CustomerID":29545,"AddressID":834,"AddressType":"Main Office","rowguid":"6e047f2b-6170-47bb-8d14-8a0702d1eb17","ModifiedDate":"2007-04-01T00:00:00"} 38 | {"CustomerID":29546,"AddressID":635,"AddressType":"Main Office","rowguid":"bff85ebd-ccd0-4daa-afbb-b415edf44265","ModifiedDate":"2006-09-01T00:00:00"} 39 | {"CustomerID":29548,"AddressID":498,"AddressType":"Main Office","rowguid":"1419ea0f-f8ee-4d5b-9e5f-90fc3a9999ca","ModifiedDate":"2005-08-01T00:00:00"} 40 | {"CustomerID":29550,"AddressID":853,"AddressType":"Main Office","rowguid":"68f33bff-28c2-4adf-a6f0-ef5ed52c0172","ModifiedDate":"2007-09-01T00:00:00"} 41 | {"CustomerID":29553,"AddressID":581,"AddressType":"Main Office","rowguid":"6332ec14-ce8a-48ac-b1c2-476077e07952","ModifiedDate":"2007-09-01T00:00:00"} 42 | {"CustomerID":29554,"AddressID":776,"AddressType":"Main Office","rowguid":"316172fc-ba5f-4a48-86e0-5213a7f59059","ModifiedDate":"2005-11-01T00:00:00"} 43 | {"CustomerID":29557,"AddressID":513,"AddressType":"Main Office","rowguid":"d3e8fa3e-72b0-4059-a99f-ed52f631e72c","ModifiedDate":"2007-09-01T00:00:00"} 44 | {"CustomerID":29558,"AddressID":500,"AddressType":"Main Office","rowguid":"c646937c-7b2b-4284-994c-11d7bf5e1f21","ModifiedDate":"2005-08-01T00:00:00"} 45 | {"CustomerID":29559,"AddressID":185,"AddressType":"Shipping","rowguid":"4764266c-0fa0-4adb-913f-013da52d6353","ModifiedDate":"2006-09-01T00:00:00"} 46 | {"CustomerID":29559,"AddressID":861,"AddressType":"Main Office","rowguid":"30233957-e9b2-4c10-9621-6704ad79d316","ModifiedDate":"2006-09-01T00:00:00"} 47 | {"CustomerID":29560,"AddressID":1030,"AddressType":"Main Office","rowguid":"4012a207-360d-4189-833c-61b0ebe4e593","ModifiedDate":"2006-08-01T00:00:00"} 48 | {"CustomerID":29562,"AddressID":1091,"AddressType":"Main Office","rowguid":"5a938e81-23b5-41f1-9f19-48aa09f5eb48","ModifiedDate":"2005-09-01T00:00:00"} 49 | {"CustomerID":29565,"AddressID":1073,"AddressType":"Main Office","rowguid":"abbed10e-0cd0-4808-9465-d8de63bb0b8d","ModifiedDate":"2005-07-01T00:00:00"} 50 | {"CustomerID":29566,"AddressID":810,"AddressType":"Main Office","rowguid":"81390af7-d4d0-4f4d-af42-ab21f5713f14","ModifiedDate":"2005-07-01T00:00:00"} 51 | {"CustomerID":29567,"AddressID":448,"AddressType":"Main Office","rowguid":"4f5a655a-1259-4f7e-95f6-cd18ca6b9a01","ModifiedDate":"2007-08-01T00:00:00"} 52 | {"CustomerID":29568,"AddressID":993,"AddressType":"Main Office","rowguid":"dcec97ac-fc1a-4fac-9dd5-b7cab0625d77","ModifiedDate":"2006-09-01T00:00:00"} 53 | {"CustomerID":29569,"AddressID":562,"AddressType":"Main Office","rowguid":"1f8372c3-2ae5-478b-90d2-618e6c5b28f5","ModifiedDate":"2005-08-01T00:00:00"} 54 | {"CustomerID":29570,"AddressID":592,"AddressType":"Main Office","rowguid":"fff86e21-3f2f-4dee-a66f-e750aceb288c","ModifiedDate":"2005-07-01T00:00:00"} 55 | {"CustomerID":29571,"AddressID":864,"AddressType":"Main Office","rowguid":"0051c719-aeec-46f0-8430-562d074be9e9","ModifiedDate":"2005-08-01T00:00:00"} 56 | {"CustomerID":29573,"AddressID":1016,"AddressType":"Main Office","rowguid":"be9052de-38c3-4055-88c4-d1cbf9e4a7f2","ModifiedDate":"2006-09-01T00:00:00"} 57 | {"CustomerID":29574,"AddressID":577,"AddressType":"Main Office","rowguid":"44d2bd82-e3b9-4390-b645-8f03e8f53237","ModifiedDate":"2006-09-01T00:00:00"} 58 | {"CustomerID":29576,"AddressID":514,"AddressType":"Main Office","rowguid":"f0d0449b-b4b5-4bee-ae9e-dda391e1971a","ModifiedDate":"2006-09-01T00:00:00"} 59 | {"CustomerID":29577,"AddressID":471,"AddressType":"Main Office","rowguid":"79195f71-4929-4c90-be50-d9dfd1767268","ModifiedDate":"2005-09-01T00:00:00"} 60 | {"CustomerID":29579,"AddressID":1012,"AddressType":"Main Office","rowguid":"1d926304-e5cd-401c-b40a-c68c9ca545c8","ModifiedDate":"2006-09-01T00:00:00"} 61 | {"CustomerID":29580,"AddressID":849,"AddressType":"Main Office","rowguid":"2548c6c5-6e73-472a-a5c8-7bc82d223038","ModifiedDate":"2005-07-01T00:00:00"} 62 | {"CustomerID":29582,"AddressID":848,"AddressType":"Main Office","rowguid":"8e96eccf-87c9-4123-9658-82807bf5cc39","ModifiedDate":"2005-08-01T00:00:00"} 63 | {"CustomerID":29583,"AddressID":576,"AddressType":"Main Office","rowguid":"12fdb97e-8664-4a38-8b9d-e7a5d48d3e6b","ModifiedDate":"2005-11-01T00:00:00"} 64 | {"CustomerID":29584,"AddressID":1014,"AddressType":"Main Office","rowguid":"27f155c4-618e-41e0-b843-6887c0b1fd95","ModifiedDate":"2006-09-01T00:00:00"} 65 | {"CustomerID":29585,"AddressID":841,"AddressType":"Main Office","rowguid":"85c76950-0a27-4b55-8c4d-4673172d5ac1","ModifiedDate":"2005-11-01T00:00:00"} 66 | {"CustomerID":29587,"AddressID":664,"AddressType":"Main Office","rowguid":"be7da2a1-7558-4566-84d7-90f67dc24375","ModifiedDate":"2006-07-01T00:00:00"} 67 | {"CustomerID":29588,"AddressID":890,"AddressType":"Main Office","rowguid":"aa005e64-2103-433d-ac7e-886222396936","ModifiedDate":"2005-11-01T00:00:00"} 68 | {"CustomerID":29590,"AddressID":789,"AddressType":"Main Office","rowguid":"b6aa96ac-8470-4683-923c-6d8c00a023dc","ModifiedDate":"2006-08-01T00:00:00"} 69 | {"CustomerID":29591,"AddressID":584,"AddressType":"Main Office","rowguid":"20668d7d-b2da-43dd-83db-4f02a269924b","ModifiedDate":"2007-07-01T00:00:00"} 70 | {"CustomerID":29593,"AddressID":585,"AddressType":"Main Office","rowguid":"0b887414-135a-43f6-94dc-60a220362c6d","ModifiedDate":"2006-08-01T00:00:00"} 71 | {"CustomerID":29596,"AddressID":458,"AddressType":"Main Office","rowguid":"f304c494-8b65-41a7-a144-853ff6dcf91c","ModifiedDate":"2005-07-01T00:00:00"} 72 | {"CustomerID":29598,"AddressID":1000,"AddressType":"Main Office","rowguid":"36d419a6-97c3-4cf3-96ef-8c8951faf7d3","ModifiedDate":"2006-08-01T00:00:00"} 73 | {"CustomerID":29599,"AddressID":877,"AddressType":"Main Office","rowguid":"db83bcb8-214f-4b20-92c8-75d4b982a134","ModifiedDate":"2006-07-01T00:00:00"} 74 | {"CustomerID":29600,"AddressID":797,"AddressType":"Main Office","rowguid":"979abdf5-114c-4324-9b43-0e9f090a6174","ModifiedDate":"2006-09-01T00:00:00"} 75 | {"CustomerID":29601,"AddressID":516,"AddressType":"Main Office","rowguid":"a35638e6-0f87-47c0-9c72-1b65cadfaf59","ModifiedDate":"2006-08-01T00:00:00"} 76 | {"CustomerID":29603,"AddressID":518,"AddressType":"Main Office","rowguid":"04a7a4ff-6708-4c08-a502-4daeaa666d55","ModifiedDate":"2007-09-01T00:00:00"} 77 | {"CustomerID":29605,"AddressID":1060,"AddressType":"Main Office","rowguid":"a0df5593-0a1d-4670-af3e-fff343ec50b3","ModifiedDate":"2006-07-01T00:00:00"} 78 | {"CustomerID":29606,"AddressID":871,"AddressType":"Main Office","rowguid":"3f467555-2c79-4cb8-906f-c45daeb8d9a6","ModifiedDate":"2005-07-01T00:00:00"} 79 | {"CustomerID":29608,"AddressID":488,"AddressType":"Main Office","rowguid":"79b712ed-91c6-418c-91cb-8af9169546e8","ModifiedDate":"2007-08-01T00:00:00"} 80 | {"CustomerID":29611,"AddressID":862,"AddressType":"Main Office","rowguid":"ea3c1aca-7d46-4842-8a52-4a5e04de9e13","ModifiedDate":"2005-11-01T00:00:00"} 81 | {"CustomerID":29612,"AddressID":649,"AddressType":"Main Office","rowguid":"56dc2277-c288-484c-afb3-52624182aba6","ModifiedDate":"2007-09-01T00:00:00"} 82 | {"CustomerID":29614,"AddressID":529,"AddressType":"Main Office","rowguid":"5a69e600-61ec-49fc-8cf9-40fcaabbb48c","ModifiedDate":"2005-07-01T00:00:00"} 83 | {"CustomerID":29615,"AddressID":663,"AddressType":"Main Office","rowguid":"c456f6e1-9405-4707-a039-d355acbd0fac","ModifiedDate":"2007-08-01T00:00:00"} 84 | {"CustomerID":29616,"AddressID":608,"AddressType":"Main Office","rowguid":"6511ad85-e361-4a97-98e5-f9e49e04ce0b","ModifiedDate":"2006-08-01T00:00:00"} 85 | {"CustomerID":29617,"AddressID":880,"AddressType":"Main Office","rowguid":"d159db17-53d1-42e0-91d8-f926ab6413e6","ModifiedDate":"2005-08-01T00:00:00"} 86 | {"CustomerID":29618,"AddressID":658,"AddressType":"Main Office","rowguid":"8ee07b7f-d561-45a5-9d78-ef7d9223b535","ModifiedDate":"2006-08-01T00:00:00"} 87 | {"CustomerID":29620,"AddressID":503,"AddressType":"Main Office","rowguid":"c7a8a997-0817-42d2-a150-5785f7a4e47f","ModifiedDate":"2005-08-01T00:00:00"} 88 | {"CustomerID":29622,"AddressID":863,"AddressType":"Main Office","rowguid":"347ca34c-5205-464e-83f7-beb956dfdf7d","ModifiedDate":"2005-09-01T00:00:00"} 89 | {"CustomerID":29623,"AddressID":1033,"AddressType":"Main Office","rowguid":"5bb7cc4f-58e9-447a-8012-e36ab7ae7f67","ModifiedDate":"2007-07-01T00:00:00"} 90 | {"CustomerID":29625,"AddressID":491,"AddressType":"Main Office","rowguid":"72bc757f-5890-414a-948f-ef5c3ee0f5ec","ModifiedDate":"2007-09-01T00:00:00"} 91 | {"CustomerID":29627,"AddressID":447,"AddressType":"Main Office","rowguid":"e25d9b43-edec-4e35-aa93-b12417ef7a61","ModifiedDate":"2006-08-01T00:00:00"} 92 | {"CustomerID":29629,"AddressID":469,"AddressType":"Main Office","rowguid":"9cd7b713-3133-4816-8375-3458aa5df285","ModifiedDate":"2007-09-01T00:00:00"} 93 | {"CustomerID":29631,"AddressID":1003,"AddressType":"Main Office","rowguid":"8c52e68f-6799-48b5-99d9-857fe08275fb","ModifiedDate":"2007-07-01T00:00:00"} 94 | {"CustomerID":29632,"AddressID":843,"AddressType":"Main Office","rowguid":"6897a92d-b5f7-467c-8d61-f89e28d0d908","ModifiedDate":"2005-09-01T00:00:00"} 95 | {"CustomerID":29635,"AddressID":634,"AddressType":"Main Office","rowguid":"194a6df5-f0e4-484d-9113-a9fce5961104","ModifiedDate":"2006-09-01T00:00:00"} 96 | {"CustomerID":29636,"AddressID":1105,"AddressType":"Main Office","rowguid":"a15f4f5f-a90f-4908-b8a7-9d126be5da1e","ModifiedDate":"2006-07-01T00:00:00"} 97 | {"CustomerID":29637,"AddressID":559,"AddressType":"Main Office","rowguid":"991e29fa-e7c2-487a-bdd8-33ca4a36f61b","ModifiedDate":"2005-09-01T00:00:00"} 98 | {"CustomerID":29638,"AddressID":989,"AddressType":"Main Office","rowguid":"3db4d2ff-611f-416c-a6e4-41292b13e04b","ModifiedDate":"2007-09-01T00:00:00"} 99 | {"CustomerID":29639,"AddressID":470,"AddressType":"Main Office","rowguid":"70c47450-562c-43bc-8596-abffdde831fe","ModifiedDate":"2005-09-01T00:00:00"} 100 | {"CustomerID":29641,"AddressID":1088,"AddressType":"Main Office","rowguid":"aca58bab-7ba5-4cb5-888d-8d9204653ceb","ModifiedDate":"2007-07-01T00:00:00"} 101 | {"CustomerID":29643,"AddressID":899,"AddressType":"Main Office","rowguid":"13ffdf92-458d-454c-a4df-0e6e7a02d459","ModifiedDate":"2007-08-01T00:00:00"} 102 | {"CustomerID":29644,"AddressID":643,"AddressType":"Main Office","rowguid":"8dab6bf4-7ed7-4e97-bafe-3ce95649e24c","ModifiedDate":"2006-09-01T00:00:00"} 103 | {"CustomerID":29645,"AddressID":850,"AddressType":"Main Office","rowguid":"d3b73c0f-674c-43cd-b134-7dbebae4ce71","ModifiedDate":"2007-09-01T00:00:00"} 104 | {"CustomerID":29646,"AddressID":578,"AddressType":"Main Office","rowguid":"3e7ccf61-0b32-4c9f-9089-6a8ef172c755","ModifiedDate":"2005-07-01T00:00:00"} 105 | {"CustomerID":29649,"AddressID":544,"AddressType":"Main Office","rowguid":"65fedc39-ac5b-434d-886e-23e4f2a451d4","ModifiedDate":"2005-09-01T00:00:00"} 106 | {"CustomerID":29650,"AddressID":1059,"AddressType":"Main Office","rowguid":"4b9a5374-fe8b-4078-b553-820d667615b5","ModifiedDate":"2007-07-01T00:00:00"} 107 | {"CustomerID":29651,"AddressID":606,"AddressType":"Main Office","rowguid":"02321ecf-27e9-42d1-bcf1-f595f871637e","ModifiedDate":"2005-09-01T00:00:00"} 108 | {"CustomerID":29653,"AddressID":1019,"AddressType":"Main Office","rowguid":"1d45cb08-2542-4fd1-bdac-8994ef616ba2","ModifiedDate":"2007-09-01T00:00:00"} 109 | {"CustomerID":29654,"AddressID":579,"AddressType":"Main Office","rowguid":"f54ab81b-11ac-4f30-ab25-34fbc123f7cb","ModifiedDate":"2006-07-01T00:00:00"} 110 | {"CustomerID":29655,"AddressID":774,"AddressType":"Main Office","rowguid":"f0850212-facf-49e3-bf75-11dc7f94fbc6","ModifiedDate":"2005-09-01T00:00:00"} 111 | {"CustomerID":29659,"AddressID":605,"AddressType":"Main Office","rowguid":"e7efb591-07eb-4d11-af71-796e8ed9394b","ModifiedDate":"2005-09-01T00:00:00"} 112 | {"CustomerID":29660,"AddressID":1058,"AddressType":"Main Office","rowguid":"035b6b42-9ff6-444d-8e99-05052edbb5a4","ModifiedDate":"2007-09-01T00:00:00"} 113 | {"CustomerID":29662,"AddressID":1013,"AddressType":"Main Office","rowguid":"acf1aebd-75bf-4969-98ef-be0d13c9e6ee","ModifiedDate":"2006-08-01T00:00:00"} 114 | {"CustomerID":29663,"AddressID":575,"AddressType":"Main Office","rowguid":"4821e5cb-21a0-453e-8862-64964817eb4c","ModifiedDate":"2006-09-01T00:00:00"} 115 | {"CustomerID":29666,"AddressID":468,"AddressType":"Main Office","rowguid":"18fa01b8-e614-4b12-bb6d-97074dd84a95","ModifiedDate":"2007-08-01T00:00:00"} 116 | {"CustomerID":29668,"AddressID":573,"AddressType":"Main Office","rowguid":"779cef11-027c-4921-9f5b-6537a571c4aa","ModifiedDate":"2005-11-01T00:00:00"} 117 | {"CustomerID":29671,"AddressID":465,"AddressType":"Main Office","rowguid":"79d1d469-4b2e-4d34-bc80-4192f8460475","ModifiedDate":"2007-07-01T00:00:00"} 118 | {"CustomerID":29673,"AddressID":1007,"AddressType":"Main Office","rowguid":"b9b287c6-dc4d-460f-a332-cbcf58899220","ModifiedDate":"2005-09-01T00:00:00"} 119 | {"CustomerID":29674,"AddressID":571,"AddressType":"Main Office","rowguid":"cb83564e-faa7-4f31-a5e2-333bafdec072","ModifiedDate":"2005-12-01T00:00:00"} 120 | {"CustomerID":29677,"AddressID":461,"AddressType":"Main Office","rowguid":"1b90b381-1c88-4b48-9c8c-e13810f1e20d","ModifiedDate":"2006-08-01T00:00:00"} 121 | {"CustomerID":29680,"AddressID":509,"AddressType":"Main Office","rowguid":"55a31949-e55b-47ee-b11f-410560c489ef","ModifiedDate":"2005-08-01T00:00:00"} 122 | {"CustomerID":29682,"AddressID":1051,"AddressType":"Main Office","rowguid":"a59c8221-1327-40e5-bc07-d3204b58ef3c","ModifiedDate":"2005-10-01T00:00:00"} 123 | {"CustomerID":29683,"AddressID":875,"AddressType":"Main Office","rowguid":"e7b2fa46-3587-4a40-a056-2916c36d82e4","ModifiedDate":"2006-07-01T00:00:00"} 124 | {"CustomerID":29684,"AddressID":795,"AddressType":"Main Office","rowguid":"198623d4-f744-4d75-864b-e270d9558ce5","ModifiedDate":"2006-08-01T00:00:00"} 125 | {"CustomerID":29686,"AddressID":1048,"AddressType":"Main Office","rowguid":"6a66126b-66e9-44d5-a065-f7a56318eab4","ModifiedDate":"2005-09-01T00:00:00"} 126 | {"CustomerID":29688,"AddressID":785,"AddressType":"Main Office","rowguid":"e7a369cf-65bf-4726-ae8d-dd158061d34d","ModifiedDate":"2005-08-01T00:00:00"} 127 | {"CustomerID":29689,"AddressID":865,"AddressType":"Main Office","rowguid":"d73c6ff6-27c7-414b-bbcb-c443f6c351ff","ModifiedDate":"2006-07-01T00:00:00"} 128 | {"CustomerID":29690,"AddressID":1036,"AddressType":"Main Office","rowguid":"c2213f36-134b-4872-aec0-2f5ec24f7bca","ModifiedDate":"2005-09-01T00:00:00"} 129 | {"CustomerID":29692,"AddressID":494,"AddressType":"Main Office","rowguid":"608a0e4d-16eb-495e-acdc-b2882ff708b6","ModifiedDate":"2006-07-01T00:00:00"} 130 | {"CustomerID":29695,"AddressID":867,"AddressType":"Main Office","rowguid":"0e4f9089-87ea-4efb-b7d4-39d32324556e","ModifiedDate":"2007-09-01T00:00:00"} 131 | {"CustomerID":29696,"AddressID":1039,"AddressType":"Main Office","rowguid":"aeb69976-7375-4c24-b433-952fe6985667","ModifiedDate":"2006-09-01T00:00:00"} 132 | {"CustomerID":29698,"AddressID":497,"AddressType":"Main Office","rowguid":"92e554a6-6acc-41b1-9992-636e10abfc5c","ModifiedDate":"2005-08-01T00:00:00"} 133 | {"CustomerID":29699,"AddressID":456,"AddressType":"Main Office","rowguid":"ff640e5b-57f6-496b-98da-eb21cb137f55","ModifiedDate":"2006-08-01T00:00:00"} 134 | {"CustomerID":29702,"AddressID":567,"AddressType":"Main Office","rowguid":"f3d6e431-8d52-4a2d-9917-b7702db40079","ModifiedDate":"2005-09-01T00:00:00"} 135 | {"CustomerID":29703,"AddressID":1001,"AddressType":"Main Office","rowguid":"69f1da2a-2e86-4c99-973b-d2ad7836fb92","ModifiedDate":"2005-08-01T00:00:00"} 136 | {"CustomerID":29705,"AddressID":459,"AddressType":"Main Office","rowguid":"a928fd77-9387-468b-aa0c-48f2c58e6949","ModifiedDate":"2005-08-01T00:00:00"} 137 | {"CustomerID":29708,"AddressID":569,"AddressType":"Main Office","rowguid":"90252818-11c0-4c9a-a28c-2b18594c41f8","ModifiedDate":"2005-09-01T00:00:00"} 138 | {"CustomerID":29709,"AddressID":906,"AddressType":"Main Office","rowguid":"e0e6f2b7-22b1-4c22-a127-e95cd2d1c2cf","ModifiedDate":"2006-09-01T00:00:00"} 139 | {"CustomerID":29710,"AddressID":1017,"AddressType":"Main Office","rowguid":"2e3c3c77-3aa1-4f44-b994-c453705588b5","ModifiedDate":"2005-09-01T00:00:00"} 140 | {"CustomerID":29711,"AddressID":472,"AddressType":"Main Office","rowguid":"45ea76b8-301a-486a-863a-c69a9e166360","ModifiedDate":"2005-09-01T00:00:00"} 141 | {"CustomerID":29713,"AddressID":644,"AddressType":"Main Office","rowguid":"ad437e81-fc8c-48ec-bd9a-0358eb2baf2c","ModifiedDate":"2007-08-01T00:00:00"} 142 | {"CustomerID":29714,"AddressID":473,"AddressType":"Main Office","rowguid":"97164cfc-253e-4432-9e60-e197747e2286","ModifiedDate":"2005-09-01T00:00:00"} 143 | {"CustomerID":29716,"AddressID":1015,"AddressType":"Main Office","rowguid":"409c560a-726b-4ca0-b714-de3d4f69c4c6","ModifiedDate":"2005-08-01T00:00:00"} 144 | {"CustomerID":29717,"AddressID":851,"AddressType":"Main Office","rowguid":"9143049e-98f6-4d35-ad3e-60621f9ae3b0","ModifiedDate":"2005-08-01T00:00:00"} 145 | {"CustomerID":29719,"AddressID":905,"AddressType":"Main Office","rowguid":"ef32d844-0dbb-40ec-9c1e-f2bd53bdbfc2","ModifiedDate":"2006-11-01T00:00:00"} 146 | {"CustomerID":29720,"AddressID":1100,"AddressType":"Main Office","rowguid":"56859a58-3017-4f7d-a038-e5305480854a","ModifiedDate":"2007-09-01T00:00:00"} 147 | {"CustomerID":29722,"AddressID":555,"AddressType":"Main Office","rowguid":"75797172-08ea-4266-b784-813b999668c7","ModifiedDate":"2005-09-01T00:00:00"} 148 | {"CustomerID":29727,"AddressID":907,"AddressType":"Main Office","rowguid":"e8465f39-2991-47fa-a0a7-f5a02aeb7ad7","ModifiedDate":"2007-08-01T00:00:00"} 149 | {"CustomerID":29728,"AddressID":1103,"AddressType":"Main Office","rowguid":"5032d0c5-1de7-4cda-a996-1aebafe04a21","ModifiedDate":"2005-11-01T00:00:00"} 150 | {"CustomerID":29730,"AddressID":558,"AddressType":"Main Office","rowguid":"ad2b1030-ca3e-450a-bab8-95755f585d84","ModifiedDate":"2006-12-01T00:00:00"} 151 | {"CustomerID":29732,"AddressID":607,"AddressType":"Main Office","rowguid":"5d353d79-ab12-4564-9e32-a5de8839e13f","ModifiedDate":"2006-08-01T00:00:00"} 152 | {"CustomerID":29733,"AddressID":1062,"AddressType":"Main Office","rowguid":"d76d2243-f3c1-46b4-b329-4781414438cc","ModifiedDate":"2005-09-01T00:00:00"} 153 | {"CustomerID":29734,"AddressID":517,"AddressType":"Main Office","rowguid":"abdaae4a-7f6d-4192-a162-495646cda3cb","ModifiedDate":"2005-07-01T00:00:00"} 154 | {"CustomerID":29736,"AddressID":659,"AddressType":"Main Office","rowguid":"ddeaba1e-f394-4009-af19-c9d4087c40fb","ModifiedDate":"2007-09-01T00:00:00"} 155 | {"CustomerID":29737,"AddressID":882,"AddressType":"Main Office","rowguid":"5e4d3150-8581-4e81-add8-2f5cf9687fec","ModifiedDate":"2007-07-01T00:00:00"} 156 | {"CustomerID":29738,"AddressID":610,"AddressType":"Main Office","rowguid":"6360a3d7-3b1b-415c-b743-0098c6b55227","ModifiedDate":"2007-09-01T00:00:00"} 157 | {"CustomerID":29739,"AddressID":1065,"AddressType":"Main Office","rowguid":"96592fa0-46c5-4e3d-a7e7-e376c0d8e521","ModifiedDate":"2006-09-01T00:00:00"} 158 | {"CustomerID":29740,"AddressID":520,"AddressType":"Main Office","rowguid":"b76a7fb2-c021-4ddf-85fe-92639a1f2bb2","ModifiedDate":"2005-09-01T00:00:00"} 159 | {"CustomerID":29741,"AddressID":660,"AddressType":"Main Office","rowguid":"14e7d304-258e-4265-aa7d-be8e82830fdb","ModifiedDate":"2007-09-01T00:00:00"} 160 | {"CustomerID":29742,"AddressID":884,"AddressType":"Main Office","rowguid":"7f519f4b-c3b4-4d2a-8daa-ecdb706b5082","ModifiedDate":"2005-08-01T00:00:00"} 161 | {"CustomerID":29743,"AddressID":612,"AddressType":"Main Office","rowguid":"77375c95-a17c-411f-b4e9-4937f6bc5f33","ModifiedDate":"2006-09-01T00:00:00"} 162 | {"CustomerID":29744,"AddressID":1068,"AddressType":"Main Office","rowguid":"fe1d120b-985b-46e0-8ed4-41ecd0adb376","ModifiedDate":"2006-07-01T00:00:00"} 163 | {"CustomerID":29747,"AddressID":895,"AddressType":"Main Office","rowguid":"ed778965-8fd3-407c-9267-440a6c9e5f3d","ModifiedDate":"2005-07-01T00:00:00"} 164 | {"CustomerID":29748,"AddressID":1085,"AddressType":"Main Office","rowguid":"4c6f57d7-e418-4073-a8c3-2d1ca6913d8a","ModifiedDate":"2005-09-01T00:00:00"} 165 | {"CustomerID":29750,"AddressID":543,"AddressType":"Main Office","rowguid":"f1e75c2e-b9f5-459e-acec-719f396de128","ModifiedDate":"2006-09-01T00:00:00"} 166 | {"CustomerID":29753,"AddressID":897,"AddressType":"Main Office","rowguid":"eba170bf-74e0-4c19-bbf4-982f75d5988f","ModifiedDate":"2006-08-01T00:00:00"} 167 | {"CustomerID":29755,"AddressID":528,"AddressType":"Main Office","rowguid":"27daafd3-3d17-43e9-8038-60b4d4ddf188","ModifiedDate":"2005-09-01T00:00:00"} 168 | {"CustomerID":29757,"AddressID":1070,"AddressType":"Main Office","rowguid":"d78221a5-548e-470e-b7de-8d34bb2d0a27","ModifiedDate":"2005-08-01T00:00:00"} 169 | {"CustomerID":29758,"AddressID":613,"AddressType":"Main Office","rowguid":"90b488ac-55aa-4010-a0c7-2a4b41ad206a","ModifiedDate":"2006-09-01T00:00:00"} 170 | {"CustomerID":29761,"AddressID":525,"AddressType":"Main Office","rowguid":"289f00e7-70c9-4f2e-9963-37cced7ea231","ModifiedDate":"2005-07-01T00:00:00"} 171 | {"CustomerID":29763,"AddressID":1067,"AddressType":"Main Office","rowguid":"fab51b08-d380-4e58-97ad-b8763273597a","ModifiedDate":"2006-09-01T00:00:00"} 172 | {"CustomerID":29764,"AddressID":611,"AddressType":"Main Office","rowguid":"8c24dd38-fef1-41b8-bd2b-8b94984f468c","ModifiedDate":"2005-08-01T00:00:00"} 173 | {"CustomerID":29765,"AddressID":806,"AddressType":"Main Office","rowguid":"3c5778fe-2189-4e99-84b5-385ca4cdfb27","ModifiedDate":"2006-08-01T00:00:00"} 174 | {"CustomerID":29766,"AddressID":522,"AddressType":"Main Office","rowguid":"3df9afb4-cce1-4e5b-87b4-01ac35d30607","ModifiedDate":"2007-02-01T00:00:00"} 175 | {"CustomerID":29768,"AddressID":1064,"AddressType":"Main Office","rowguid":"16161c9f-fde0-43f5-9b89-e04c7dc7bf98","ModifiedDate":"2006-01-01T00:00:00"} 176 | {"CustomerID":29769,"AddressID":609,"AddressType":"Main Office","rowguid":"e217dc84-a4c8-4758-802c-714782491796","ModifiedDate":"2005-09-01T00:00:00"} 177 | {"CustomerID":29770,"AddressID":445,"AddressType":"Main Office","rowguid":"40e68361-485d-45f4-b18c-282d13f4552e","ModifiedDate":"2006-09-01T00:00:00"} 178 | {"CustomerID":29771,"AddressID":990,"AddressType":"Main Office","rowguid":"33e5eb41-f032-42e1-ab6f-3386454b4543","ModifiedDate":"2006-07-01T00:00:00"} 179 | {"CustomerID":29772,"AddressID":560,"AddressType":"Main Office","rowguid":"bf40660e-40b6-495b-99d0-753ce987b1d1","ModifiedDate":"2006-07-01T00:00:00"} 180 | {"CustomerID":29772,"AddressID":11380,"AddressType":"Shipping","rowguid":"7c6297be-ea24-433f-a038-50e082d341b8","ModifiedDate":"2006-07-01T00:00:00"} 181 | {"CustomerID":29773,"AddressID":832,"AddressType":"Main Office","rowguid":"314f2574-1f75-457f-9bd1-74d1ce53daa5","ModifiedDate":"2005-08-01T00:00:00"} 182 | {"CustomerID":29774,"AddressID":564,"AddressType":"Main Office","rowguid":"61d28a67-48a3-4f21-a56b-478d15ee3593","ModifiedDate":"2005-08-01T00:00:00"} 183 | {"CustomerID":29775,"AddressID":836,"AddressType":"Main Office","rowguid":"dfdb2561-a36f-4f3c-ae89-5a62dfc80aa2","ModifiedDate":"2006-09-01T00:00:00"} 184 | {"CustomerID":29776,"AddressID":636,"AddressType":"Main Office","rowguid":"079741e4-908a-442c-b804-945dbacf3b1e","ModifiedDate":"2007-07-01T00:00:00"} 185 | {"CustomerID":29778,"AddressID":650,"AddressType":"Main Office","rowguid":"8ad5e768-9078-44c2-a6ef-5c43d018b618","ModifiedDate":"2006-07-01T00:00:00"} 186 | {"CustomerID":29780,"AddressID":490,"AddressType":"Main Office","rowguid":"21b47ec3-1d65-4c2d-9e8d-088852776795","ModifiedDate":"2006-08-01T00:00:00"} 187 | {"CustomerID":29781,"AddressID":1035,"AddressType":"Main Office","rowguid":"7907b148-d4f2-48b7-8d9c-122b8c09cbb8","ModifiedDate":"2006-09-01T00:00:00"} 188 | {"CustomerID":29782,"AddressID":590,"AddressType":"Main Office","rowguid":"96f0286b-48ff-45e9-8b3b-3ade877e8896","ModifiedDate":"2006-07-01T00:00:00"} 189 | {"CustomerID":29783,"AddressID":1075,"AddressType":"Main Office","rowguid":"23c7cbfa-d379-4d31-a50a-41390f428850","ModifiedDate":"2006-07-01T00:00:00"} 190 | {"CustomerID":29784,"AddressID":1078,"AddressType":"Main Office","rowguid":"b9c0d4fe-b72e-4615-94b2-0bf1d4e69adf","ModifiedDate":"2006-08-01T00:00:00"} 191 | {"CustomerID":29785,"AddressID":533,"AddressType":"Main Office","rowguid":"951e0eea-ef27-4723-99c4-969750131f07","ModifiedDate":"2005-11-01T00:00:00"} 192 | {"CustomerID":29787,"AddressID":869,"AddressType":"Main Office","rowguid":"7320dad6-eaba-4bb3-8cf2-a555b25255e8","ModifiedDate":"2005-08-01T00:00:00"} 193 | {"CustomerID":29788,"AddressID":1043,"AddressType":"Main Office","rowguid":"3a948195-aeb2-4415-b949-f5065c555791","ModifiedDate":"2005-12-01T00:00:00"} 194 | {"CustomerID":29789,"AddressID":501,"AddressType":"Main Office","rowguid":"d97a5607-00c5-40a9-a969-daaf6e005d03","ModifiedDate":"2005-08-01T00:00:00"} 195 | {"CustomerID":29792,"AddressID":597,"AddressType":"Main Office","rowguid":"a985dfac-3208-4cf4-8ce2-3af97dd1ccc0","ModifiedDate":"2006-08-01T00:00:00"} 196 | {"CustomerID":29793,"AddressID":1011,"AddressType":"Main Office","rowguid":"6075ee51-f2ee-4e6d-97bb-6c0732a4c53f","ModifiedDate":"2006-09-01T00:00:00"} 197 | {"CustomerID":29794,"AddressID":466,"AddressType":"Main Office","rowguid":"b3b568ec-526e-442f-b068-fbb0cbe36eb8","ModifiedDate":"2005-08-01T00:00:00"} 198 | {"CustomerID":29796,"AddressID":642,"AddressType":"Main Office","rowguid":"5f9605d9-90c5-448b-9e38-13e53bd965f0","ModifiedDate":"2007-09-01T00:00:00"} 199 | {"CustomerID":29797,"AddressID":455,"AddressType":"Main Office","rowguid":"0568c992-f82d-4177-b7e8-c36af5e749dc","ModifiedDate":"2006-08-01T00:00:00"} 200 | {"CustomerID":29799,"AddressID":997,"AddressType":"Main Office","rowguid":"7aef4f41-eafa-43f0-836a-674ee40ae72b","ModifiedDate":"2007-09-01T00:00:00"} 201 | {"CustomerID":29800,"AddressID":839,"AddressType":"Main Office","rowguid":"c0e88505-0953-4314-96fc-f6f9eb581b99","ModifiedDate":"2006-08-01T00:00:00"} 202 | {"CustomerID":29803,"AddressID":452,"AddressType":"Main Office","rowguid":"3401998e-ccfc-4f78-8f4a-d0ececf17645","ModifiedDate":"2005-09-01T00:00:00"} 203 | {"CustomerID":29805,"AddressID":994,"AddressType":"Main Office","rowguid":"3596cef3-c2ae-4ce6-95db-5fff68b4ba57","ModifiedDate":"2006-07-01T00:00:00"} 204 | {"CustomerID":29806,"AddressID":837,"AddressType":"Main Office","rowguid":"4caa058d-61f5-4a49-9167-d1e57dcac9ce","ModifiedDate":"2007-09-01T00:00:00"} 205 | {"CustomerID":29807,"AddressID":449,"AddressType":"Main Office","rowguid":"3ab25485-c5fd-4132-aa0b-2a9b2915068c","ModifiedDate":"2005-08-01T00:00:00"} 206 | {"CustomerID":29809,"AddressID":991,"AddressType":"Main Office","rowguid":"25929ce2-3342-40c7-a963-24d097ea30f3","ModifiedDate":"2006-09-01T00:00:00"} 207 | {"CustomerID":29810,"AddressID":835,"AddressType":"Main Office","rowguid":"60b2442d-5a2a-408c-8f1d-b38be02b91c9","ModifiedDate":"2005-09-01T00:00:00"} 208 | {"CustomerID":29813,"AddressID":446,"AddressType":"Main Office","rowguid":"26b1ebc5-570f-4d4b-baf2-c8c855b94151","ModifiedDate":"2005-08-01T00:00:00"} 209 | {"CustomerID":29815,"AddressID":988,"AddressType":"Main Office","rowguid":"e968e6ac-47ae-4c04-8207-443b842de930","ModifiedDate":"2006-09-01T00:00:00"} 210 | {"CustomerID":29816,"AddressID":297,"AddressType":"Shipping","rowguid":"c33e7580-8404-43f7-a783-21b927020b98","ModifiedDate":"2006-08-01T00:00:00"} 211 | {"CustomerID":29816,"AddressID":833,"AddressType":"Main Office","rowguid":"b4435c21-4d7f-40e5-abea-4966428597d5","ModifiedDate":"2006-08-01T00:00:00"} 212 | {"CustomerID":29818,"AddressID":1104,"AddressType":"Main Office","rowguid":"a3718fb8-73ed-4a1b-b686-1fc240700210","ModifiedDate":"2005-08-01T00:00:00"} 213 | {"CustomerID":29819,"AddressID":633,"AddressType":"Main Office","rowguid":"c4bbe507-b9ca-4f90-9d47-a8c30ad62adf","ModifiedDate":"2006-08-01T00:00:00"} 214 | {"CustomerID":29822,"AddressID":557,"AddressType":"Main Office","rowguid":"e7c2f784-d012-4180-86d8-ad49f3a4c402","ModifiedDate":"2006-09-01T00:00:00"} 215 | {"CustomerID":29824,"AddressID":556,"AddressType":"Main Office","rowguid":"35bca4ad-180b-46e9-9578-0c9fc3202e13","ModifiedDate":"2005-07-01T00:00:00"} 216 | {"CustomerID":29826,"AddressID":1101,"AddressType":"Main Office","rowguid":"d4d410de-2fb4-4080-ae2a-c459d0568542","ModifiedDate":"2006-10-01T00:00:00"} 217 | {"CustomerID":29827,"AddressID":631,"AddressType":"Main Office","rowguid":"a9b3cba7-2f99-4914-a083-f5e6badad4f1","ModifiedDate":"2005-07-01T00:00:00"} 218 | {"CustomerID":29830,"AddressID":553,"AddressType":"Main Office","rowguid":"651786db-eb03-48a7-9b3e-86ad341627fc","ModifiedDate":"2005-08-01T00:00:00"} 219 | {"CustomerID":29831,"AddressID":552,"AddressType":"Main Office","rowguid":"a72e515f-df6a-4a7c-93fd-414bd925335b","ModifiedDate":"2008-06-01T00:00:00"} 220 | {"CustomerID":29832,"AddressID":551,"AddressType":"Main Office","rowguid":"17d1e4c8-b4bd-40f6-b1db-8d1f0990bcab","ModifiedDate":"2006-09-01T00:00:00"} 221 | {"CustomerID":29834,"AddressID":1097,"AddressType":"Main Office","rowguid":"6eb20c23-f905-44c5-8e69-fd1baa8f2765","ModifiedDate":"2005-09-01T00:00:00"} 222 | {"CustomerID":29835,"AddressID":903,"AddressType":"Main Office","rowguid":"e26c8c28-a7c3-4ee4-a844-b1430b97aef7","ModifiedDate":"2006-08-01T00:00:00"} 223 | {"CustomerID":29840,"AddressID":547,"AddressType":"Main Office","rowguid":"9e2595f6-492a-4683-b6fc-1a52fc4c37b2","ModifiedDate":"2007-09-01T00:00:00"} 224 | {"CustomerID":29842,"AddressID":1094,"AddressType":"Main Office","rowguid":"018c1503-5a74-462c-bd52-697938fd82d1","ModifiedDate":"2005-09-01T00:00:00"} 225 | {"CustomerID":29843,"AddressID":901,"AddressType":"Main Office","rowguid":"8ff46c88-3a42-4f4d-aeb6-be149a35e650","ModifiedDate":"2007-09-01T00:00:00"} 226 | {"CustomerID":29847,"AddressID":1092,"AddressType":"Main Office","rowguid":"54e22612-0521-4ea6-b7b0-29d081e054c4","ModifiedDate":"2006-09-01T00:00:00"} 227 | {"CustomerID":29848,"AddressID":625,"AddressType":"Main Office","rowguid":"33847fbf-d078-4a88-b331-4aeb4f8ce9d5","ModifiedDate":"2007-08-01T00:00:00"} 228 | {"CustomerID":29850,"AddressID":623,"AddressType":"Main Office","rowguid":"0beebf7f-da33-4ead-981b-814c71908b47","ModifiedDate":"2007-07-01T00:00:00"} 229 | {"CustomerID":29851,"AddressID":657,"AddressType":"Main Office","rowguid":"50bd7f7e-8937-4b35-8391-a217eb60abaf","ModifiedDate":"2006-08-01T00:00:00"} 230 | {"CustomerID":29852,"AddressID":511,"AddressType":"Main Office","rowguid":"c2005ff8-9e71-4d36-be82-5f920137a4af","ModifiedDate":"2006-12-01T00:00:00"} 231 | {"CustomerID":29853,"AddressID":1056,"AddressType":"Main Office","rowguid":"fe9c02c8-7ff9-4a9d-881d-66e388707b8f","ModifiedDate":"2005-08-01T00:00:00"} 232 | {"CustomerID":29854,"AddressID":604,"AddressType":"Main Office","rowguid":"9d47f717-fb49-4b2f-b536-5e86483caa37","ModifiedDate":"2007-09-01T00:00:00"} 233 | {"CustomerID":29855,"AddressID":539,"AddressType":"Main Office","rowguid":"d4701110-f7e5-4f41-9e56-e983c5a18ab5","ModifiedDate":"2005-08-01T00:00:00"} 234 | {"CustomerID":29857,"AddressID":666,"AddressType":"Main Office","rowguid":"7bd7135d-791d-420d-8738-f9cf72cf3fdd","ModifiedDate":"2006-08-01T00:00:00"} 235 | {"CustomerID":29858,"AddressID":894,"AddressType":"Main Office","rowguid":"f49e2c74-9bb9-462e-bcaa-67370f4d74a9","ModifiedDate":"2006-01-01T00:00:00"} 236 | {"CustomerID":29859,"AddressID":622,"AddressType":"Main Office","rowguid":"f1f94995-b143-46e1-8be1-e4ba680b7c3b","ModifiedDate":"2006-03-01T00:00:00"} 237 | {"CustomerID":29860,"AddressID":668,"AddressType":"Main Office","rowguid":"cc407427-8a5c-4543-89fc-07fbcf32e609","ModifiedDate":"2007-08-01T00:00:00"} 238 | {"CustomerID":29861,"AddressID":628,"AddressType":"Main Office","rowguid":"08198768-5a31-4605-8043-d2495ab40697","ModifiedDate":"2005-08-01T00:00:00"} 239 | {"CustomerID":29861,"AddressID":11382,"AddressType":"Shipping","rowguid":"19fcc0c7-ce20-4648-bd54-ff8a77adcf3d","ModifiedDate":"2005-08-01T00:00:00"} 240 | {"CustomerID":29862,"AddressID":1096,"AddressType":"Main Office","rowguid":"2919880b-8b32-4fc8-b7d2-d44fc2d86bcb","ModifiedDate":"2006-10-01T00:00:00"} 241 | {"CustomerID":29863,"AddressID":546,"AddressType":"Main Office","rowguid":"ebd9ad4d-8193-43ba-8fa5-e2c0a0cbb11f","ModifiedDate":"2007-08-01T00:00:00"} 242 | {"CustomerID":29864,"AddressID":487,"AddressType":"Main Office","rowguid":"def4d1e6-be40-43b9-b6bf-0ba395f7d377","ModifiedDate":"2006-09-01T00:00:00"} 243 | {"CustomerID":29865,"AddressID":1032,"AddressType":"Main Office","rowguid":"70cba3f6-5540-40c8-a3bb-f3b068b724b9","ModifiedDate":"2005-08-01T00:00:00"} 244 | {"CustomerID":29866,"AddressID":588,"AddressType":"Main Office","rowguid":"97359b3a-cbbd-4d77-8ef1-c00a9235dcd8","ModifiedDate":"2005-08-01T00:00:00"} 245 | {"CustomerID":29867,"AddressID":860,"AddressType":"Main Office","rowguid":"27ce6686-06ce-4b0f-aea6-35ccc189492d","ModifiedDate":"2006-07-01T00:00:00"} 246 | {"CustomerID":29868,"AddressID":648,"AddressType":"Main Office","rowguid":"f3398939-a9ad-4b7d-ba7e-14624f7d43ba","ModifiedDate":"2007-08-01T00:00:00"} 247 | {"CustomerID":29870,"AddressID":484,"AddressType":"Main Office","rowguid":"5cc7359e-2cb1-46f9-97a2-5d94a6c9f90e","ModifiedDate":"2008-06-01T00:00:00"} 248 | {"CustomerID":29871,"AddressID":1029,"AddressType":"Main Office","rowguid":"b599562f-4cf6-4c71-8c02-79e80522d00f","ModifiedDate":"2007-07-01T00:00:00"} 249 | {"CustomerID":29872,"AddressID":586,"AddressType":"Main Office","rowguid":"816c491a-703b-4f12-aa02-fd8b863ecd70","ModifiedDate":"2005-09-01T00:00:00"} 250 | {"CustomerID":29873,"AddressID":858,"AddressType":"Main Office","rowguid":"386e13f8-728a-4c9f-8ce7-38afc5bd605b","ModifiedDate":"2006-09-01T00:00:00"} 251 | {"CustomerID":29874,"AddressID":647,"AddressType":"Main Office","rowguid":"8b604c39-a03e-4914-a755-6011e2836bca","ModifiedDate":"2007-07-01T00:00:00"} 252 | {"CustomerID":29876,"AddressID":481,"AddressType":"Main Office","rowguid":"75756445-0f83-423c-b065-cc359f478da1","ModifiedDate":"2006-08-01T00:00:00"} 253 | {"CustomerID":29877,"AddressID":1026,"AddressType":"Main Office","rowguid":"961322f7-4900-4419-9267-c58a1f7e7ae5","ModifiedDate":"2007-09-01T00:00:00"} 254 | {"CustomerID":29879,"AddressID":515,"AddressType":"Main Office","rowguid":"eed9551e-f6c8-418d-b945-942a64a884c8","ModifiedDate":"2006-07-01T00:00:00"} 255 | {"CustomerID":29881,"AddressID":483,"AddressType":"Main Office","rowguid":"e84a3989-ee42-4752-a6f0-ded83afbf901","ModifiedDate":"2007-09-01T00:00:00"} 256 | {"CustomerID":29883,"AddressID":1025,"AddressType":"Main Office","rowguid":"691f68e5-a080-4199-a039-207c1993bd7d","ModifiedDate":"2005-09-01T00:00:00"} 257 | {"CustomerID":29883,"AddressID":11381,"AddressType":"Shipping","rowguid":"c48c839a-4b7f-4927-9704-589178587f6c","ModifiedDate":"2005-09-01T00:00:00"} 258 | {"CustomerID":29884,"AddressID":583,"AddressType":"Main Office","rowguid":"5d4845c6-5905-4712-908b-5084fcc3b04f","ModifiedDate":"2007-03-01T00:00:00"} 259 | {"CustomerID":29885,"AddressID":857,"AddressType":"Main Office","rowguid":"d9b79631-e1f5-4584-bac5-a4c71ea74448","ModifiedDate":"2005-08-01T00:00:00"} 260 | {"CustomerID":29889,"AddressID":1021,"AddressType":"Main Office","rowguid":"5a372eb5-2a48-43d3-ade1-a67dedea0e20","ModifiedDate":"2005-07-01T00:00:00"} 261 | {"CustomerID":29890,"AddressID":855,"AddressType":"Main Office","rowguid":"176ef850-4bf4-45cc-b534-0cca49223cae","ModifiedDate":"2005-07-01T00:00:00"} 262 | {"CustomerID":29891,"AddressID":775,"AddressType":"Main Office","rowguid":"1779f0aa-e430-4de5-ad94-59de109df1ef","ModifiedDate":"2006-09-01T00:00:00"} 263 | {"CustomerID":29892,"AddressID":476,"AddressType":"Main Office","rowguid":"fe8846fb-9827-4dcd-bee5-113a861cb13b","ModifiedDate":"2005-08-01T00:00:00"} 264 | {"CustomerID":29893,"AddressID":1018,"AddressType":"Main Office","rowguid":"2ad834ec-582d-4666-85c2-e2d6d168a223","ModifiedDate":"2007-07-01T00:00:00"} 265 | {"CustomerID":29895,"AddressID":524,"AddressType":"Main Office","rowguid":"882c6728-41e4-4ba5-9b26-f1341a0bfb11","ModifiedDate":"2006-08-01T00:00:00"} 266 | {"CustomerID":29897,"AddressID":28,"AddressType":"Shipping","rowguid":"32ac1e35-a59f-4776-ba25-e64429512b5d","ModifiedDate":"2005-09-01T00:00:00"} 267 | {"CustomerID":29897,"AddressID":1066,"AddressType":"Main Office","rowguid":"b9019606-2ebc-43c6-8f58-905eaf700fc2","ModifiedDate":"2005-09-01T00:00:00"} 268 | {"CustomerID":29898,"AddressID":876,"AddressType":"Main Office","rowguid":"c917a47c-301f-49c1-9f02-bc11a1c94f1c","ModifiedDate":"2005-07-01T00:00:00"} 269 | {"CustomerID":29900,"AddressID":508,"AddressType":"Main Office","rowguid":"5246c0b3-83d6-435c-aaba-1787d1633f84","ModifiedDate":"2006-12-01T00:00:00"} 270 | {"CustomerID":29901,"AddressID":1053,"AddressType":"Main Office","rowguid":"2c3dafeb-06c9-4159-914e-4e16e413f843","ModifiedDate":"2005-08-01T00:00:00"} 271 | {"CustomerID":29902,"AddressID":602,"AddressType":"Main Office","rowguid":"9e61ecc8-7365-45a0-a1ea-3a0464ee97bd","ModifiedDate":"2006-09-01T00:00:00"} 272 | {"CustomerID":29903,"AddressID":874,"AddressType":"Main Office","rowguid":"23821fdc-fd22-480b-bdce-3c65c33387bd","ModifiedDate":"2006-09-01T00:00:00"} 273 | {"CustomerID":29904,"AddressID":655,"AddressType":"Main Office","rowguid":"952287ec-6669-4220-9117-a95fdf46d8b1","ModifiedDate":"2006-08-01T00:00:00"} 274 | {"CustomerID":29905,"AddressID":505,"AddressType":"Main Office","rowguid":"0420d0d7-9e3e-4c30-b67c-c7e9dd0273a6","ModifiedDate":"2005-08-01T00:00:00"} 275 | {"CustomerID":29906,"AddressID":600,"AddressType":"Main Office","rowguid":"1f3cd6c4-af8e-4a58-9e49-8282b544cf3d","ModifiedDate":"2005-08-01T00:00:00"} 276 | {"CustomerID":29907,"AddressID":872,"AddressType":"Main Office","rowguid":"1f91c474-7799-4e5a-ad5c-7d094041867c","ModifiedDate":"2007-08-01T00:00:00"} 277 | {"CustomerID":29908,"AddressID":654,"AddressType":"Main Office","rowguid":"30bd6eb8-34be-4c9b-ade6-ea2d67f3d699","ModifiedDate":"2007-08-01T00:00:00"} 278 | {"CustomerID":29910,"AddressID":502,"AddressType":"Main Office","rowguid":"696d6949-58f5-4de1-9989-d41ce31b9d8f","ModifiedDate":"2006-08-01T00:00:00"} 279 | {"CustomerID":29911,"AddressID":538,"AddressType":"Main Office","rowguid":"b7cdc62a-5672-4327-9b71-2ba730134d98","ModifiedDate":"2007-08-01T00:00:00"} 280 | {"CustomerID":29913,"AddressID":1080,"AddressType":"Main Office","rowguid":"da56e398-0dd4-4158-b70f-8e4a117dd231","ModifiedDate":"2006-08-01T00:00:00"} 281 | {"CustomerID":29914,"AddressID":1079,"AddressType":"Main Office","rowguid":"822ed3f8-69bd-46ee-a9cd-29c11f80cdb8","ModifiedDate":"2005-09-01T00:00:00"} 282 | {"CustomerID":29915,"AddressID":891,"AddressType":"Main Office","rowguid":"ec1a1489-7026-4d97-9b83-5763a5927cd9","ModifiedDate":"2005-12-01T00:00:00"} 283 | {"CustomerID":29918,"AddressID":460,"AddressType":"Main Office","rowguid":"375117b5-406c-48ce-be16-b702bbe4bb0d","ModifiedDate":"2007-08-01T00:00:00"} 284 | {"CustomerID":29919,"AddressID":1005,"AddressType":"Main Office","rowguid":"4a1c9daf-8f54-45ec-bb7f-d2a61c9362f6","ModifiedDate":"2006-08-01T00:00:00"} 285 | {"CustomerID":29920,"AddressID":570,"AddressType":"Main Office","rowguid":"2ccd3b05-5e70-4fb5-81c2-28d557f16d90","ModifiedDate":"2006-07-01T00:00:00"} 286 | {"CustomerID":29921,"AddressID":842,"AddressType":"Main Office","rowguid":"2b812294-50ac-4525-92f2-6d29760a0a63","ModifiedDate":"2005-09-01T00:00:00"} 287 | {"CustomerID":29922,"AddressID":639,"AddressType":"Main Office","rowguid":"65998649-05e8-49a5-97d5-53f0445a628f","ModifiedDate":"2007-09-01T00:00:00"} 288 | {"CustomerID":29924,"AddressID":1002,"AddressType":"Main Office","rowguid":"c454f63d-ef99-44ad-be3e-12fc3272b0ba","ModifiedDate":"2006-08-01T00:00:00"} 289 | {"CustomerID":29925,"AddressID":840,"AddressType":"Main Office","rowguid":"85f9be4d-f847-4249-b676-4a998d885266","ModifiedDate":"2005-08-01T00:00:00"} 290 | {"CustomerID":29926,"AddressID":638,"AddressType":"Main Office","rowguid":"acda2178-9538-46d6-b023-01eb79bf7872","ModifiedDate":"2007-08-01T00:00:00"} 291 | {"CustomerID":29928,"AddressID":454,"AddressType":"Main Office","rowguid":"e7f64144-8fac-4392-84d9-22faf9a73de1","ModifiedDate":"2007-08-01T00:00:00"} 292 | {"CustomerID":29929,"AddressID":999,"AddressType":"Main Office","rowguid":"46e7f8b7-bf76-4c86-a629-01e39bafa4d7","ModifiedDate":"2006-09-01T00:00:00"} 293 | {"CustomerID":29930,"AddressID":566,"AddressType":"Main Office","rowguid":"49ce33d2-f079-4eab-b2ad-4fca0469c098","ModifiedDate":"2005-11-01T00:00:00"} 294 | {"CustomerID":29931,"AddressID":838,"AddressType":"Main Office","rowguid":"0238ddcb-752b-45b0-9b07-6a784789ff21","ModifiedDate":"2007-09-01T00:00:00"} 295 | {"CustomerID":29932,"AddressID":637,"AddressType":"Main Office","rowguid":"16e0667f-aa85-4155-ab36-1703fc9e07f0","ModifiedDate":"2007-09-01T00:00:00"} 296 | {"CustomerID":29934,"AddressID":451,"AddressType":"Main Office","rowguid":"bf9679da-39e6-4e84-8476-4da4a30c330f","ModifiedDate":"2006-12-01T00:00:00"} 297 | {"CustomerID":29935,"AddressID":996,"AddressType":"Main Office","rowguid":"b9c06ea5-f335-427a-a99a-b54a33481ba0","ModifiedDate":"2006-08-01T00:00:00"} 298 | {"CustomerID":29936,"AddressID":852,"AddressType":"Main Office","rowguid":"57e10df3-d294-4266-85fb-8605830dda3d","ModifiedDate":"2007-08-01T00:00:00"} 299 | {"CustomerID":29937,"AddressID":580,"AddressType":"Main Office","rowguid":"9c95615b-d86b-4300-941a-572a69ef1c4a","ModifiedDate":"2006-07-01T00:00:00"} 300 | {"CustomerID":29938,"AddressID":1020,"AddressType":"Main Office","rowguid":"cada439d-e85a-4ef6-94ad-65923961240b","ModifiedDate":"2005-09-01T00:00:00"} 301 | {"CustomerID":29939,"AddressID":475,"AddressType":"Main Office","rowguid":"ec8852e5-975c-4058-bc0a-ac65c1b48ffd","ModifiedDate":"2007-09-01T00:00:00"} 302 | {"CustomerID":29941,"AddressID":645,"AddressType":"Main Office","rowguid":"4b94aa98-7647-44d4-a886-e706875a6844","ModifiedDate":"2007-07-01T00:00:00"} 303 | {"CustomerID":29942,"AddressID":854,"AddressType":"Main Office","rowguid":"a82c76b8-4c10-406c-81a8-66be5aae5788","ModifiedDate":"2007-08-01T00:00:00"} 304 | {"CustomerID":29943,"AddressID":582,"AddressType":"Main Office","rowguid":"e56d2ae3-8346-4e47-86aa-76c6b39319ba","ModifiedDate":"2007-09-01T00:00:00"} 305 | {"CustomerID":29944,"AddressID":1004,"AddressType":"Main Office","rowguid":"f66a7be6-29a8-4309-a143-b1fa1540a225","ModifiedDate":"2005-09-01T00:00:00"} 306 | {"CustomerID":29946,"AddressID":462,"AddressType":"Main Office","rowguid":"31527987-c089-4cb9-999b-f0adfc5affc6","ModifiedDate":"2005-08-01T00:00:00"} 307 | {"CustomerID":29948,"AddressID":572,"AddressType":"Main Office","rowguid":"7eabce07-686e-4011-9521-aabe83733395","ModifiedDate":"2007-09-01T00:00:00"} 308 | {"CustomerID":29949,"AddressID":1008,"AddressType":"Main Office","rowguid":"e91d6996-49da-4dae-bcfa-4b02b37cff56","ModifiedDate":"2006-08-01T00:00:00"} 309 | {"CustomerID":29950,"AddressID":463,"AddressType":"Main Office","rowguid":"a94b6c2e-a3ad-44b4-9085-dcba6a9da311","ModifiedDate":"2005-09-01T00:00:00"} 310 | {"CustomerID":29952,"AddressID":641,"AddressType":"Main Office","rowguid":"8aa47f7e-c090-4726-94ac-7cd310ae8433","ModifiedDate":"2006-08-01T00:00:00"} 311 | {"CustomerID":29953,"AddressID":846,"AddressType":"Main Office","rowguid":"58b5243a-a590-4bf7-bb3d-322d50079b7e","ModifiedDate":"2006-08-01T00:00:00"} 312 | {"CustomerID":29954,"AddressID":25,"AddressType":"Shipping","rowguid":"85666565-49e8-427a-8a2a-c7960c7e665a","ModifiedDate":"2006-09-01T00:00:00"} 313 | {"CustomerID":29954,"AddressID":574,"AddressType":"Main Office","rowguid":"337aebb8-bab7-4c4d-a1e9-f88d8b637294","ModifiedDate":"2006-09-01T00:00:00"} 314 | {"CustomerID":29955,"AddressID":756,"AddressType":"Main Office","rowguid":"1527eac1-49ff-4f1c-a2be-69d42c6cc09a","ModifiedDate":"2005-08-01T00:00:00"} 315 | {"CustomerID":29956,"AddressID":561,"AddressType":"Main Office","rowguid":"00390f39-ad50-4852-94c9-8cc153fcb635","ModifiedDate":"2006-09-01T00:00:00"} 316 | {"CustomerID":29957,"AddressID":992,"AddressType":"Main Office","rowguid":"228e647e-24f6-427b-b40d-a1b7a0d88db5","ModifiedDate":"2006-09-01T00:00:00"} 317 | {"CustomerID":29959,"AddressID":450,"AddressType":"Main Office","rowguid":"8403e33b-a0ab-4d9c-a223-dcf3f74e2b8f","ModifiedDate":"2006-09-01T00:00:00"} 318 | {"CustomerID":29962,"AddressID":563,"AddressType":"Main Office","rowguid":"56bbbd3f-4809-4bea-883c-24d712763e34","ModifiedDate":"2006-09-01T00:00:00"} 319 | {"CustomerID":29964,"AddressID":453,"AddressType":"Main Office","rowguid":"19c598d1-750e-4350-ae29-97a55ab7bf04","ModifiedDate":"2007-09-01T00:00:00"} 320 | {"CustomerID":29967,"AddressID":565,"AddressType":"Main Office","rowguid":"3da21168-1da5-4ff2-8716-55efc98633b6","ModifiedDate":"2005-09-01T00:00:00"} 321 | {"CustomerID":29969,"AddressID":548,"AddressType":"Main Office","rowguid":"754e5ea8-f1c4-41e6-831c-cf56df1375a7","ModifiedDate":"2005-09-01T00:00:00"} 322 | {"CustomerID":29971,"AddressID":549,"AddressType":"Main Office","rowguid":"752e7532-c545-4f14-a0fe-941409090492","ModifiedDate":"2006-09-01T00:00:00"} 323 | {"CustomerID":29973,"AddressID":825,"AddressType":"Main Office","rowguid":"21b6c40a-daef-43e2-8467-3dc824a1a577","ModifiedDate":"2005-10-01T00:00:00"} 324 | {"CustomerID":29974,"AddressID":629,"AddressType":"Main Office","rowguid":"a656cb14-f54f-4dc9-954d-0a91a3226a06","ModifiedDate":"2005-07-01T00:00:00"} 325 | {"CustomerID":29975,"AddressID":1098,"AddressType":"Main Office","rowguid":"ec307993-124c-476f-94e6-e358512890c5","ModifiedDate":"2006-09-01T00:00:00"} 326 | {"CustomerID":29978,"AddressID":671,"AddressType":"Main Office","rowguid":"b392d956-6455-40c6-9b4f-36173cdf49d2","ModifiedDate":"2008-02-01T00:00:00"} 327 | {"CustomerID":29980,"AddressID":672,"AddressType":"Main Office","rowguid":"9af6b4d5-aa4c-4e8f-a709-f4567c850966","ModifiedDate":"2006-09-01T00:00:00"} 328 | {"CustomerID":29981,"AddressID":904,"AddressType":"Main Office","rowguid":"b798d879-bf0f-46e1-b7fc-1c1a8df518d5","ModifiedDate":"2006-07-01T00:00:00"} 329 | {"CustomerID":29982,"AddressID":1102,"AddressType":"Main Office","rowguid":"95fd4c03-f298-40a1-a4d2-2b02e221d876","ModifiedDate":"2005-12-01T00:00:00"} 330 | {"CustomerID":29983,"AddressID":554,"AddressType":"Main Office","rowguid":"db69c4e3-6912-4ac2-87ec-76fc58cb7c2d","ModifiedDate":"2006-08-01T00:00:00"} 331 | {"CustomerID":29985,"AddressID":673,"AddressType":"Main Office","rowguid":"a9de79d2-ba98-4df1-89d2-807b7dcca039","ModifiedDate":"2006-08-01T00:00:00"} 332 | {"CustomerID":29987,"AddressID":1023,"AddressType":"Main Office","rowguid":"88d1889d-e045-40cc-a9ce-51c8614947e5","ModifiedDate":"2007-07-01T00:00:00"} 333 | {"CustomerID":29988,"AddressID":478,"AddressType":"Main Office","rowguid":"74dbdb0b-0110-44fa-941c-98bcd90c7d86","ModifiedDate":"2005-08-01T00:00:00"} 334 | {"CustomerID":29990,"AddressID":646,"AddressType":"Main Office","rowguid":"245a36b0-5abb-41c1-83b6-e993e4eca1a4","ModifiedDate":"2006-08-01T00:00:00"} 335 | {"CustomerID":29991,"AddressID":856,"AddressType":"Main Office","rowguid":"c1740c61-c680-466f-b8d1-51cf235bc6e9","ModifiedDate":"2006-11-01T00:00:00"} 336 | {"CustomerID":29992,"AddressID":1024,"AddressType":"Main Office","rowguid":"06b02e3b-f6c6-4bad-becb-7b9fd91b7f64","ModifiedDate":"2005-07-01T00:00:00"} 337 | {"CustomerID":29994,"AddressID":482,"AddressType":"Main Office","rowguid":"50baa902-3d53-42d2-a154-f4c007975943","ModifiedDate":"2005-07-01T00:00:00"} 338 | {"CustomerID":29997,"AddressID":859,"AddressType":"Main Office","rowguid":"d50ee4b4-f614-48bd-b4cb-0b57bc374f06","ModifiedDate":"2006-08-01T00:00:00"} 339 | {"CustomerID":29998,"AddressID":1027,"AddressType":"Main Office","rowguid":"837dffa6-8e7d-4d63-871d-6e11ee484190","ModifiedDate":"2006-09-01T00:00:00"} 340 | {"CustomerID":30000,"AddressID":485,"AddressType":"Main Office","rowguid":"ff4550c5-f25d-4135-9ef5-e110f3fb5d91","ModifiedDate":"2006-07-01T00:00:00"} 341 | {"CustomerID":30003,"AddressID":620,"AddressType":"Main Office","rowguid":"d2500013-41b3-40ce-9135-8ea6c762d1bb","ModifiedDate":"2005-09-01T00:00:00"} 342 | {"CustomerID":30004,"AddressID":892,"AddressType":"Main Office","rowguid":"49819453-a096-4e1e-ab21-1bdf3a25e812","ModifiedDate":"2005-08-01T00:00:00"} 343 | {"CustomerID":30005,"AddressID":665,"AddressType":"Main Office","rowguid":"b664cfc7-00c5-4076-a57a-7f9e7d8d17d0","ModifiedDate":"2007-08-01T00:00:00"} 344 | {"CustomerID":30007,"AddressID":536,"AddressType":"Main Office","rowguid":"766eacd4-c44b-4754-8754-984f6f416164","ModifiedDate":"2006-09-01T00:00:00"} 345 | {"CustomerID":30008,"AddressID":617,"AddressType":"Main Office","rowguid":"33aa20be-4db5-42e4-83c6-64f377be8e6c","ModifiedDate":"2007-06-01T00:00:00"} 346 | {"CustomerID":30010,"AddressID":535,"AddressType":"Main Office","rowguid":"01a80aae-7be3-4abd-9615-fe7a45280bb9","ModifiedDate":"2005-11-01T00:00:00"} 347 | {"CustomerID":30012,"AddressID":1077,"AddressType":"Main Office","rowguid":"ee0da3b5-0e51-468b-bfaa-cce39c25f910","ModifiedDate":"2005-11-01T00:00:00"} 348 | {"CustomerID":30016,"AddressID":531,"AddressType":"Main Office","rowguid":"7d90c75b-9b26-4d75-9d57-364326b6e75e","ModifiedDate":"2006-11-01T00:00:00"} 349 | {"CustomerID":30018,"AddressID":9,"AddressType":"Shipping","rowguid":"432bbee2-8a6b-45e3-8915-9350f0434e3f","ModifiedDate":"2006-07-01T00:00:00"} 350 | {"CustomerID":30018,"AddressID":868,"AddressType":"Main Office","rowguid":"3478227b-f0df-4c62-ae6e-3436cbee3cfd","ModifiedDate":"2006-07-01T00:00:00"} 351 | {"CustomerID":30019,"AddressID":652,"AddressType":"Main Office","rowguid":"4d79eb56-5f62-4c2f-90f2-f2f11d7e4f63","ModifiedDate":"2006-09-01T00:00:00"} 352 | {"CustomerID":30021,"AddressID":496,"AddressType":"Main Office","rowguid":"9c254d20-1324-4359-bd3a-df341483d700","ModifiedDate":"2007-08-01T00:00:00"} 353 | {"CustomerID":30022,"AddressID":1041,"AddressType":"Main Office","rowguid":"d905cfc1-25cc-4f55-8bc0-0978a62e012d","ModifiedDate":"2005-11-01T00:00:00"} 354 | {"CustomerID":30023,"AddressID":594,"AddressType":"Main Office","rowguid":"475b3850-2cd4-48a3-af69-355fd0158a35","ModifiedDate":"2006-08-01T00:00:00"} 355 | {"CustomerID":30024,"AddressID":866,"AddressType":"Main Office","rowguid":"56c83e74-d730-44dc-92de-fa90d4eabd52","ModifiedDate":"2007-08-01T00:00:00"} 356 | {"CustomerID":30025,"AddressID":651,"AddressType":"Main Office","rowguid":"16201c53-5310-44ea-8af3-52c501233509","ModifiedDate":"2007-09-01T00:00:00"} 357 | {"CustomerID":30027,"AddressID":1038,"AddressType":"Main Office","rowguid":"5dc4ddd8-be9a-4bd2-9f35-9f81743296e8","ModifiedDate":"2007-09-01T00:00:00"} 358 | {"CustomerID":30028,"AddressID":1087,"AddressType":"Main Office","rowguid":"89dc9828-a718-4d85-9254-9ee7442a9242","ModifiedDate":"2006-08-01T00:00:00"} 359 | {"CustomerID":30029,"AddressID":542,"AddressType":"Main Office","rowguid":"4093bd23-27ff-4f33-a21f-6b4307b983ed","ModifiedDate":"2006-09-01T00:00:00"} 360 | {"CustomerID":30030,"AddressID":667,"AddressType":"Main Office","rowguid":"c1a1b046-3ee3-4366-9cb6-b25c4c261b11","ModifiedDate":"2006-08-01T00:00:00"} 361 | {"CustomerID":30031,"AddressID":896,"AddressType":"Main Office","rowguid":"ea56ba8d-5f32-426f-8880-58fa472d6993","ModifiedDate":"2007-09-01T00:00:00"} 362 | {"CustomerID":30032,"AddressID":624,"AddressType":"Main Office","rowguid":"453adfd6-3aaa-41c0-97ae-1990bf059f5e","ModifiedDate":"2007-02-01T00:00:00"} 363 | {"CustomerID":30033,"AddressID":1090,"AddressType":"Main Office","rowguid":"c3b9cc49-7b83-4888-8958-1a3b7558e614","ModifiedDate":"2007-09-01T00:00:00"} 364 | {"CustomerID":30034,"AddressID":898,"AddressType":"Main Office","rowguid":"5f9216ff-94a5-4f60-a6cf-166255dca85f","ModifiedDate":"2007-09-01T00:00:00"} 365 | {"CustomerID":30035,"AddressID":626,"AddressType":"Main Office","rowguid":"412c9901-3093-482d-b601-87dc5ffe43fb","ModifiedDate":"2007-08-01T00:00:00"} 366 | {"CustomerID":30036,"AddressID":1093,"AddressType":"Main Office","rowguid":"cb14b4e6-97c6-453e-bd51-9c0a1d49ff16","ModifiedDate":"2007-08-01T00:00:00"} 367 | {"CustomerID":30037,"AddressID":545,"AddressType":"Main Office","rowguid":"47d260d5-1f63-4617-93ab-5e144941b2c0","ModifiedDate":"2006-09-01T00:00:00"} 368 | {"CustomerID":30039,"AddressID":627,"AddressType":"Main Office","rowguid":"7c2b29ba-a09a-41ae-80c6-958859beec9b","ModifiedDate":"2006-07-01T00:00:00"} 369 | {"CustomerID":30040,"AddressID":1095,"AddressType":"Main Office","rowguid":"c218b088-b5e0-4812-9ee5-46cc9c2dc864","ModifiedDate":"2007-02-01T00:00:00"} 370 | {"CustomerID":30042,"AddressID":523,"AddressType":"Main Office","rowguid":"31f60fa6-3745-404d-a1e6-937621635039","ModifiedDate":"2005-08-01T00:00:00"} 371 | {"CustomerID":30044,"AddressID":661,"AddressType":"Main Office","rowguid":"15343c26-52ec-4cc9-90f1-0dda6a196292","ModifiedDate":"2006-08-01T00:00:00"} 372 | {"CustomerID":30045,"AddressID":886,"AddressType":"Main Office","rowguid":"a33d3a7c-77cc-4ada-9957-398a049bf03d","ModifiedDate":"2006-08-01T00:00:00"} 373 | {"CustomerID":30046,"AddressID":614,"AddressType":"Main Office","rowguid":"6bf98d5f-91a2-462a-9993-290f3acf88b0","ModifiedDate":"2006-09-01T00:00:00"} 374 | {"CustomerID":30047,"AddressID":1071,"AddressType":"Main Office","rowguid":"48f96eb4-5e50-42d7-b8e4-6390c2ab703a","ModifiedDate":"2006-11-01T00:00:00"} 375 | {"CustomerID":30048,"AddressID":526,"AddressType":"Main Office","rowguid":"5fb30583-2fc0-40a6-9d86-44c9abd854f4","ModifiedDate":"2006-07-01T00:00:00"} 376 | {"CustomerID":30050,"AddressID":662,"AddressType":"Main Office","rowguid":"e891c193-3b12-4843-8f2b-5902423cb7a0","ModifiedDate":"2006-09-01T00:00:00"} 377 | {"CustomerID":30051,"AddressID":888,"AddressType":"Main Office","rowguid":"a303b277-ecc4-49d1-aa81-c39d5193d035","ModifiedDate":"2007-07-01T00:00:00"} 378 | {"CustomerID":30052,"AddressID":1074,"AddressType":"Main Office","rowguid":"ea85b354-01cb-48b5-a60b-dbe990cf7661","ModifiedDate":"2005-07-01T00:00:00"} 379 | {"CustomerID":30053,"AddressID":507,"AddressType":"Main Office","rowguid":"4409d7b8-5701-4103-bc8e-60043723f8aa","ModifiedDate":"2007-09-01T00:00:00"} 380 | {"CustomerID":30055,"AddressID":601,"AddressType":"Main Office","rowguid":"b5558a28-1fc8-480e-aeae-68cb7f59820e","ModifiedDate":"2006-08-01T00:00:00"} 381 | {"CustomerID":30056,"AddressID":1052,"AddressType":"Main Office","rowguid":"53a88fe9-3a3d-4190-821f-a4579923d143","ModifiedDate":"2005-08-01T00:00:00"} 382 | {"CustomerID":30058,"AddressID":510,"AddressType":"Main Office","rowguid":"b44447d2-e096-4f10-8e12-34838cc105c3","ModifiedDate":"2005-11-01T00:00:00"} 383 | {"CustomerID":30061,"AddressID":603,"AddressType":"Main Office","rowguid":"2c0d6291-37f3-4132-9bd1-be3f27887639","ModifiedDate":"2007-08-01T00:00:00"} 384 | {"CustomerID":30063,"AddressID":1009,"AddressType":"Main Office","rowguid":"c650a72d-ec8f-4f21-872e-46da52c7049f","ModifiedDate":"2007-08-01T00:00:00"} 385 | {"CustomerID":30064,"AddressID":847,"AddressType":"Main Office","rowguid":"d9411b71-a713-4396-96fc-76698e70baf0","ModifiedDate":"2006-06-01T00:00:00"} 386 | {"CustomerID":30067,"AddressID":464,"AddressType":"Main Office","rowguid":"af190caa-ebab-485d-b695-6d2c51f21cab","ModifiedDate":"2005-07-01T00:00:00"} 387 | {"CustomerID":30069,"AddressID":1006,"AddressType":"Main Office","rowguid":"6004980e-7e85-4a58-999e-7298c3837e44","ModifiedDate":"2007-09-01T00:00:00"} 388 | {"CustomerID":30070,"AddressID":845,"AddressType":"Main Office","rowguid":"4d612d21-d01c-4948-8f79-58a28120c8e5","ModifiedDate":"2007-07-01T00:00:00"} 389 | {"CustomerID":30071,"AddressID":844,"AddressType":"Main Office","rowguid":"64c6b4c7-59bc-4f38-ac4e-41a34557a2a8","ModifiedDate":"2007-09-01T00:00:00"} 390 | {"CustomerID":30072,"AddressID":640,"AddressType":"Main Office","rowguid":"c6078b9a-2f95-4029-be72-511345be2a9a","ModifiedDate":"2007-09-01T00:00:00"} 391 | {"CustomerID":30074,"AddressID":534,"AddressType":"Main Office","rowguid":"2ef881a7-77ae-434c-af0c-e1122eef3d2d","ModifiedDate":"2005-08-01T00:00:00"} 392 | {"CustomerID":30076,"AddressID":1076,"AddressType":"Main Office","rowguid":"b7d461fe-3694-49a8-a2ea-dfa20384b2f0","ModifiedDate":"2005-08-01T00:00:00"} 393 | {"CustomerID":30080,"AddressID":885,"AddressType":"Main Office","rowguid":"3d04c1e0-f1f9-4e9a-af1f-51063b0cd4a9","ModifiedDate":"2007-09-01T00:00:00"} 394 | {"CustomerID":30083,"AddressID":521,"AddressType":"Main Office","rowguid":"3cea9956-63ba-47f1-9c44-171abbcc2b37","ModifiedDate":"2006-09-01T00:00:00"} 395 | {"CustomerID":30087,"AddressID":492,"AddressType":"Main Office","rowguid":"22875f2e-323b-4538-a890-c5c8f7ecc08d","ModifiedDate":"2007-09-01T00:00:00"} 396 | {"CustomerID":30089,"AddressID":1034,"AddressType":"Main Office","rowguid":"2f99485b-952a-44d4-a5af-5a94faca240e","ModifiedDate":"2007-09-01T00:00:00"} 397 | {"CustomerID":30090,"AddressID":589,"AddressType":"Main Office","rowguid":"8898dc46-3b2d-4834-8ca2-2658f2b1f48a","ModifiedDate":"2005-09-01T00:00:00"} 398 | {"CustomerID":30093,"AddressID":489,"AddressType":"Main Office","rowguid":"ac074832-adec-4312-9bf7-22d56eb4ceb9","ModifiedDate":"2007-08-01T00:00:00"} 399 | {"CustomerID":30094,"AddressID":1031,"AddressType":"Main Office","rowguid":"d54c6fb8-9b5c-48d3-bbd7-45f522dd6678","ModifiedDate":"2006-08-01T00:00:00"} 400 | {"CustomerID":30095,"AddressID":587,"AddressType":"Main Office","rowguid":"e6b235a8-56ba-477b-b674-5791c69eaaa9","ModifiedDate":"2005-08-01T00:00:00"} 401 | {"CustomerID":30098,"AddressID":486,"AddressType":"Main Office","rowguid":"1175d1c6-86e0-418c-92e4-17d4fc9de2cd","ModifiedDate":"2006-07-01T00:00:00"} 402 | {"CustomerID":30100,"AddressID":1028,"AddressType":"Main Office","rowguid":"4c846256-c130-4f84-a012-d99d100c557f","ModifiedDate":"2005-08-01T00:00:00"} 403 | {"CustomerID":30102,"AddressID":669,"AddressType":"Main Office","rowguid":"d996364a-0b31-4b67-adcc-1d0454b5b26d","ModifiedDate":"2006-12-01T00:00:00"} 404 | {"CustomerID":30104,"AddressID":670,"AddressType":"Main Office","rowguid":"c716c9a6-a562-4c5f-ac86-3744fe5d3194","ModifiedDate":"2006-07-01T00:00:00"} 405 | {"CustomerID":30105,"AddressID":902,"AddressType":"Main Office","rowguid":"535eba9b-7944-444e-82d3-2da2c930340d","ModifiedDate":"2006-09-01T00:00:00"} 406 | {"CustomerID":30106,"AddressID":630,"AddressType":"Main Office","rowguid":"164491b5-2a57-4ff7-9ea4-b59e66eb38ac","ModifiedDate":"2005-09-01T00:00:00"} 407 | {"CustomerID":30107,"AddressID":1099,"AddressType":"Main Office","rowguid":"ef3bbf6b-9cc8-45ca-b564-fe8b29103d7a","ModifiedDate":"2005-08-01T00:00:00"} 408 | {"CustomerID":30108,"AddressID":550,"AddressType":"Main Office","rowguid":"1cae94d5-5527-4eac-a1ee-61b828784dd1","ModifiedDate":"2006-08-01T00:00:00"} 409 | {"CustomerID":30109,"AddressID":826,"AddressType":"Main Office","rowguid":"cd073e68-c151-4bde-b286-cf56484cf98c","ModifiedDate":"2006-07-01T00:00:00"} 410 | {"CustomerID":30110,"AddressID":1047,"AddressType":"Main Office","rowguid":"63a7a2e0-e0b5-4da1-8a78-372081eb517e","ModifiedDate":"2006-09-01T00:00:00"} 411 | {"CustomerID":30111,"AddressID":598,"AddressType":"Main Office","rowguid":"b7c03322-5a8c-44bc-8b3e-456d16c125e0","ModifiedDate":"2005-08-01T00:00:00"} 412 | {"CustomerID":30112,"AddressID":870,"AddressType":"Main Office","rowguid":"18f1221c-ea54-48c2-ad9a-7736ff1010cb","ModifiedDate":"2006-08-01T00:00:00"} 413 | {"CustomerID":30113,"AddressID":653,"AddressType":"Main Office","rowguid":"b3d67684-4f0a-4f71-b5e2-2e5e93ccc91c","ModifiedDate":"2006-09-01T00:00:00"} 414 | {"CustomerID":30115,"AddressID":499,"AddressType":"Main Office","rowguid":"a02a45b2-673d-4ff6-9c60-ee59a8c2bb4b","ModifiedDate":"2006-08-01T00:00:00"} 415 | {"CustomerID":30116,"AddressID":1044,"AddressType":"Main Office","rowguid":"e953d4fe-212c-4a45-9b1f-575cc75969c5","ModifiedDate":"2007-07-01T00:00:00"} 416 | {"CustomerID":30117,"AddressID":596,"AddressType":"Main Office","rowguid":"5d215b08-8954-48d2-8254-447d2415fc8b","ModifiedDate":"2005-08-01T00:00:00"} 417 | {"CustomerID":30118,"AddressID":595,"AddressType":"Main Office","rowguid":"4acaf1c5-6e59-43d6-8421-76c9a22ff457","ModifiedDate":"2006-09-01T00:00:00"} 418 | -------------------------------------------------------------------------------- /JSON/AdventureWorks/SalesLT_ProductCategory_20200716.json: -------------------------------------------------------------------------------- 1 | {"ProductCategoryID":1,"ParentProductCategoryID":null,"Name":"Bikes","rowguid":"cfbda25c-df71-47a7-b81b-64ee161aa37c","ModifiedDate":"2002-06-01T00:00:00"} 2 | {"ProductCategoryID":2,"ParentProductCategoryID":null,"Name":"Components","rowguid":"c657828d-d808-4aba-91a3-af2ce02300e9","ModifiedDate":"2002-06-01T00:00:00"} 3 | {"ProductCategoryID":3,"ParentProductCategoryID":null,"Name":"Clothing","rowguid":"10a7c342-ca82-48d4-8a38-46a2eb089b74","ModifiedDate":"2002-06-01T00:00:00"} 4 | {"ProductCategoryID":4,"ParentProductCategoryID":null,"Name":"Accessories","rowguid":"2be3be36-d9a2-4eee-b593-ed895d97c2a6","ModifiedDate":"2002-06-01T00:00:00"} 5 | {"ProductCategoryID":5,"ParentProductCategoryID":1,"Name":"Mountain Bikes","rowguid":"2d364ade-264a-433c-b092-4fcbf3804e01","ModifiedDate":"2002-06-01T00:00:00"} 6 | {"ProductCategoryID":6,"ParentProductCategoryID":1,"Name":"Road Bikes","rowguid":"000310c0-bcc8-42c4-b0c3-45ae611af06b","ModifiedDate":"2002-06-01T00:00:00"} 7 | {"ProductCategoryID":7,"ParentProductCategoryID":1,"Name":"Touring Bikes","rowguid":"02c5061d-ecdc-4274-b5f1-e91d76bc3f37","ModifiedDate":"2002-06-01T00:00:00"} 8 | {"ProductCategoryID":8,"ParentProductCategoryID":2,"Name":"Handlebars","rowguid":"3ef2c725-7135-4c85-9ae6-ae9a3bdd9283","ModifiedDate":"2002-06-01T00:00:00"} 9 | {"ProductCategoryID":9,"ParentProductCategoryID":2,"Name":"Bottom Brackets","rowguid":"a9e54089-8a1e-4cf5-8646-e3801f685934","ModifiedDate":"2002-06-01T00:00:00"} 10 | {"ProductCategoryID":10,"ParentProductCategoryID":2,"Name":"Brakes","rowguid":"d43ba4a3-ef0d-426b-90eb-4be4547dd30c","ModifiedDate":"2002-06-01T00:00:00"} 11 | {"ProductCategoryID":11,"ParentProductCategoryID":2,"Name":"Chains","rowguid":"e93a7231-f16c-4b0f-8c41-c73fdec62da0","ModifiedDate":"2002-06-01T00:00:00"} 12 | {"ProductCategoryID":12,"ParentProductCategoryID":2,"Name":"Cranksets","rowguid":"4f644521-422b-4f19-974a-e3df6102567e","ModifiedDate":"2002-06-01T00:00:00"} 13 | {"ProductCategoryID":13,"ParentProductCategoryID":2,"Name":"Derailleurs","rowguid":"1830d70c-aa2a-40c0-a271-5ba86f38f8bf","ModifiedDate":"2002-06-01T00:00:00"} 14 | {"ProductCategoryID":14,"ParentProductCategoryID":2,"Name":"Forks","rowguid":"b5f9ba42-b69b-4fdd-b2ec-57fb7b42e3cf","ModifiedDate":"2002-06-01T00:00:00"} 15 | {"ProductCategoryID":15,"ParentProductCategoryID":2,"Name":"Headsets","rowguid":"7c782bbe-5a16-495a-aa50-10afe5a84af2","ModifiedDate":"2002-06-01T00:00:00"} 16 | {"ProductCategoryID":16,"ParentProductCategoryID":2,"Name":"Mountain Frames","rowguid":"61b21b65-e16a-4be7-9300-4d8e9db861be","ModifiedDate":"2002-06-01T00:00:00"} 17 | {"ProductCategoryID":17,"ParentProductCategoryID":2,"Name":"Pedals","rowguid":"6d24ac07-7a84-4849-864a-865a14125bc9","ModifiedDate":"2002-06-01T00:00:00"} 18 | {"ProductCategoryID":18,"ParentProductCategoryID":2,"Name":"Road Frames","rowguid":"5515f857-075b-4f9a-87b7-43b4997077b3","ModifiedDate":"2002-06-01T00:00:00"} 19 | {"ProductCategoryID":19,"ParentProductCategoryID":2,"Name":"Saddles","rowguid":"049fffa3-9d30-46df-82f7-f20730ec02b3","ModifiedDate":"2002-06-01T00:00:00"} 20 | {"ProductCategoryID":20,"ParentProductCategoryID":2,"Name":"Touring Frames","rowguid":"d2e3f1a8-56c4-4f36-b29d-5659fc0d2789","ModifiedDate":"2002-06-01T00:00:00"} 21 | {"ProductCategoryID":21,"ParentProductCategoryID":2,"Name":"Wheels","rowguid":"43521287-4b0b-438e-b80e-d82d9ad7c9f0","ModifiedDate":"2002-06-01T00:00:00"} 22 | {"ProductCategoryID":22,"ParentProductCategoryID":3,"Name":"Bib-Shorts","rowguid":"67b58d2b-5798-4a90-8c6c-5ddacf057171","ModifiedDate":"2002-06-01T00:00:00"} 23 | {"ProductCategoryID":23,"ParentProductCategoryID":3,"Name":"Caps","rowguid":"430dd6a8-a755-4b23-bb05-52520107da5f","ModifiedDate":"2002-06-01T00:00:00"} 24 | {"ProductCategoryID":24,"ParentProductCategoryID":3,"Name":"Gloves","rowguid":"92d5657b-0032-4e49-bad5-41a441a70942","ModifiedDate":"2002-06-01T00:00:00"} 25 | {"ProductCategoryID":25,"ParentProductCategoryID":3,"Name":"Jerseys","rowguid":"09e91437-ba4f-4b1a-8215-74184fd95db8","ModifiedDate":"2002-06-01T00:00:00"} 26 | {"ProductCategoryID":26,"ParentProductCategoryID":3,"Name":"Shorts","rowguid":"1a5ba5b3-03c3-457c-b11e-4fa85ede87da","ModifiedDate":"2002-06-01T00:00:00"} 27 | {"ProductCategoryID":27,"ParentProductCategoryID":3,"Name":"Socks","rowguid":"701019c3-09fe-4949-8386-c6ce686474e5","ModifiedDate":"2002-06-01T00:00:00"} 28 | {"ProductCategoryID":28,"ParentProductCategoryID":3,"Name":"Tights","rowguid":"5deb3e55-9897-4416-b18a-515e970bc2d1","ModifiedDate":"2002-06-01T00:00:00"} 29 | {"ProductCategoryID":29,"ParentProductCategoryID":3,"Name":"Vests","rowguid":"9ad7fe93-5ba0-4736-b578-ff80a2071297","ModifiedDate":"2002-06-01T00:00:00"} 30 | {"ProductCategoryID":30,"ParentProductCategoryID":4,"Name":"Bike Racks","rowguid":"4624b5ce-66d6-496b-9201-c053df3556cc","ModifiedDate":"2002-06-01T00:00:00"} 31 | {"ProductCategoryID":31,"ParentProductCategoryID":4,"Name":"Bike Stands","rowguid":"43b445c8-b820-424e-a1d5-90d81da0b46f","ModifiedDate":"2002-06-01T00:00:00"} 32 | {"ProductCategoryID":32,"ParentProductCategoryID":4,"Name":"Bottles and Cages","rowguid":"9b7dff41-9fa3-4776-8def-2c9a48c8b779","ModifiedDate":"2002-06-01T00:00:00"} 33 | {"ProductCategoryID":33,"ParentProductCategoryID":4,"Name":"Cleaners","rowguid":"9ad3bcf0-244d-4ec4-a6a0-fb701351c6a3","ModifiedDate":"2002-06-01T00:00:00"} 34 | {"ProductCategoryID":34,"ParentProductCategoryID":4,"Name":"Fenders","rowguid":"1697f8a2-0a08-4883-b7dd-d19117b4e9a7","ModifiedDate":"2002-06-01T00:00:00"} 35 | {"ProductCategoryID":35,"ParentProductCategoryID":4,"Name":"Helmets","rowguid":"f5e07a33-c9e0-439c-b5f3-9f25fb65becc","ModifiedDate":"2002-06-01T00:00:00"} 36 | {"ProductCategoryID":36,"ParentProductCategoryID":4,"Name":"Hydration Packs","rowguid":"646a8906-fc87-4267-a443-9c6d791e6693","ModifiedDate":"2002-06-01T00:00:00"} 37 | {"ProductCategoryID":37,"ParentProductCategoryID":4,"Name":"Lights","rowguid":"954178ba-624f-42db-95f6-ca035f36d130","ModifiedDate":"2002-06-01T00:00:00"} 38 | {"ProductCategoryID":38,"ParentProductCategoryID":4,"Name":"Locks","rowguid":"19646983-3fa0-4773-9a0c-f34c49df9bc8","ModifiedDate":"2002-06-01T00:00:00"} 39 | {"ProductCategoryID":39,"ParentProductCategoryID":4,"Name":"Panniers","rowguid":"3002a5d5-fec3-464b-bef3-e0f81d35f431","ModifiedDate":"2002-06-01T00:00:00"} 40 | {"ProductCategoryID":40,"ParentProductCategoryID":4,"Name":"Pumps","rowguid":"fe4d46f2-c87c-48c5-a4a1-3f55712d80b1","ModifiedDate":"2002-06-01T00:00:00"} 41 | {"ProductCategoryID":41,"ParentProductCategoryID":4,"Name":"Tires and Tubes","rowguid":"3c17c9ae-e906-48b4-bdd3-60e28d47dcdf","ModifiedDate":"2002-06-01T00:00:00"} 42 | -------------------------------------------------------------------------------- /JSON/AdventureWorks/SalesLT_ProductModel_20200716.json: -------------------------------------------------------------------------------- 1 | {"ProductModelID":1,"Name":"Classic Vest","CatalogDescription":null,"rowguid":"29321d47-1e4c-4aac-887c-19634328c25e","ModifiedDate":"2007-06-01T00:00:00"} 2 | {"ProductModelID":2,"Name":"Cycling Cap","CatalogDescription":null,"rowguid":"474fb654-3c96-4cb9-82df-2152eeffbdb0","ModifiedDate":"2005-06-01T00:00:00"} 3 | {"ProductModelID":3,"Name":"Full-Finger Gloves","CatalogDescription":null,"rowguid":"a75483fe-3c47-4aa4-93cf-664b51192987","ModifiedDate":"2006-06-01T00:00:00"} 4 | {"ProductModelID":4,"Name":"Half-Finger Gloves","CatalogDescription":null,"rowguid":"14b56f2a-d4aa-40a4-b9a2-984f165ed702","ModifiedDate":"2006-06-01T00:00:00"} 5 | {"ProductModelID":5,"Name":"HL Mountain Frame","CatalogDescription":null,"rowguid":"fdd5407b-c2db-49d1-a86b-c13a2e3582a2","ModifiedDate":"2005-06-01T00:00:00"} 6 | {"ProductModelID":6,"Name":"HL Road Frame","CatalogDescription":null,"rowguid":"4d332ecc-48b3-4e04-b7e7-227f3ac2a7ec","ModifiedDate":"2002-05-02T00:00:00"} 7 | {"ProductModelID":7,"Name":"HL Touring Frame","CatalogDescription":null,"rowguid":"d60ed2a5-c100-4c54-89a1-531404c4a20f","ModifiedDate":"2009-05-16T16:34:28.98"} 8 | {"ProductModelID":8,"Name":"LL Mountain Frame","CatalogDescription":null,"rowguid":"65bf3f6d-bcf2-4db6-8515-fc5c57423037","ModifiedDate":"2006-11-20T09:56:38.273"} 9 | {"ProductModelID":9,"Name":"LL Road Frame","CatalogDescription":null,"rowguid":"ddc67a2f-024a-4446-9b54-3c679baba708","ModifiedDate":"2005-06-01T00:00:00"} 10 | {"ProductModelID":10,"Name":"LL Touring Frame","CatalogDescription":null,"rowguid":"66c63844-2a24-473c-96d5-d3b3fd57d834","ModifiedDate":"2009-05-16T16:34:28.98"} 11 | {"ProductModelID":11,"Name":"Long-Sleeve Logo Jersey","CatalogDescription":null,"rowguid":"20efe3f1-a2f8-4dde-b74b-18265f61f863","ModifiedDate":"2005-06-01T00:00:00"} 12 | {"ProductModelID":12,"Name":"Men's Bib-Shorts","CatalogDescription":null,"rowguid":"219e2f87-26a9-483b-b968-04578e943096","ModifiedDate":"2006-06-01T00:00:00"} 13 | {"ProductModelID":13,"Name":"Men's Sports Shorts","CatalogDescription":null,"rowguid":"45fe0d77-6645-473c-a116-1232baea8d43","ModifiedDate":"2006-06-01T00:00:00"} 14 | {"ProductModelID":14,"Name":"ML Mountain Frame","CatalogDescription":null,"rowguid":"0d48c51d-7603-4010-9265-0491805bb010","ModifiedDate":"2006-06-01T00:00:00"} 15 | {"ProductModelID":15,"Name":"ML Mountain Frame-W","CatalogDescription":null,"rowguid":"aa77697c-6d1c-48f1-845c-3cb089498715","ModifiedDate":"2006-06-01T00:00:00"} 16 | {"ProductModelID":16,"Name":"ML Road Frame","CatalogDescription":null,"rowguid":"3494e8ff-7daf-4860-abf6-97842048e272","ModifiedDate":"2005-06-01T00:00:00"} 17 | {"ProductModelID":17,"Name":"ML Road Frame-W","CatalogDescription":null,"rowguid":"ca18ecfd-2023-4fa7-a556-0321153bca34","ModifiedDate":"2006-06-01T00:00:00"} 18 | {"ProductModelID":18,"Name":"Mountain Bike Socks","CatalogDescription":null,"rowguid":"36b1a76a-dff3-4a55-86f9-65eb1cb18d7b","ModifiedDate":"2005-06-01T00:00:00"} 19 | {"ProductModelID":19,"Name":"Mountain-100","CatalogDescription":"Our top-of-the-line competition mountain bike.\r\n \t\t\t\tPerformance-enhancing options include the innovative HL Frame,\r\n\t\t\t\tsuper-smooth front suspension, and traction for all terrain.\r\n AdventureWorks2002HTTP://www.Adventure-works.comThese are the product highlights.\r\n 3 yearsparts and labor10 yearsmaintenance contract available through your dealer or any AdventureWorks retail store.High performance wheels.Anatomic design and made from durable leather for a full-day of riding in comfort.Top-of-the-line clipless pedals with adjustable tension.Each frame is hand-crafted in our Bothell facility to the optimum diameter\r\n\t\t\t\tand wall-thickness required of a premium mountain frame.\r\n\t\t\t\tThe heat-treated welded aluminum frame has a larger diameter tube that absorbs the bumps. Triple crankset; alumunim crank arm; flawless shifting. frontsmall118 These are the product specifications.\r\n Almuminum AlloyAvailable in most colorsMountain bikeAdvanced to Professional riders","rowguid":"fca0665b-b956-489a-a5ec-6f0b4aa14d02","ModifiedDate":"2005-06-01T00:00:00"} 20 | {"ProductModelID":20,"Name":"Mountain-200","CatalogDescription":null,"rowguid":"3b78edff-2aa9-4ac1-8c3d-94090b5f53a9","ModifiedDate":"2006-06-01T00:00:00"} 21 | {"ProductModelID":21,"Name":"Mountain-300","CatalogDescription":null,"rowguid":"ecddd0d7-2db2-464d-b2da-89bffc6276aa","ModifiedDate":"2006-06-01T00:00:00"} 22 | {"ProductModelID":22,"Name":"Mountain-400-W","CatalogDescription":null,"rowguid":"6d2fcce4-ffce-4662-a3f8-5d18f0eedcd8","ModifiedDate":"2007-06-01T00:00:00"} 23 | {"ProductModelID":23,"Name":"Mountain-500","CatalogDescription":"Suitable for any type of riding, on or off-road.\r\n\t\t\tFits any budget. Smooth-shifting with a comfortable ride.\r\n AdventureWorks2002HTTP://www.Adventure-works.comProduct highlights include:\r\n 1 yearparts and labor3 yearsmaintenance contact available through dealerStable, durable wheels suitable for novice riders.Made from synthetic leather and features gel padding for increased comfort.Expanded platform so you can ride in any shoes; great for all-around riding. Super rigid spindle. Our best value frame utilizing the same, ground-breaking technology as the ML aluminum frame.frontsmall1 These are the product specifications.\r\n Varies Centimeters.\r\n Aluminum AlloyAvailable in all colors.Mountain bikeNovice to Intermediate riders","rowguid":"866dbad3-5999-4329-beac-d826d959d9a1","ModifiedDate":"2006-11-20T09:56:38.273"} 24 | {"ProductModelID":24,"Name":"Racing Socks","CatalogDescription":null,"rowguid":"bd8ba6f8-7e16-4fa3-b3b3-2036dd4a2ae0","ModifiedDate":"2007-06-01T00:00:00"} 25 | {"ProductModelID":25,"Name":"Road-150","CatalogDescription":"This bike is ridden by race winners. Developed with the\r\n\t\t\tAdventure Works Cycles professional race team, it has a extremely light\r\n\t\t\theat-treated aluminum frame, and steering that allows precision control.\r\n AdventureWorks2002HTTP://www.Adventure-works.comThese are the product highlights.\r\n 4 yearsparts and labor7 yearsmaintenance contact available through dealer or any Adventure Works Cycles retail store.Designed for racers; high-end anatomically shaped bar from aluminum alloy.Strong wheels with double-walled rims.Lightweight kevlar racing saddle.Top-of-the-line clipless pedals with adjustable tension.Our lightest and best quality aluminum frame made from the newest alloy;\r\n\t\t\tit is welded and heat-treated for strength.\r\n\t\t\tOur innovative design results in maximum comfort and performance.frontsmall126 These are the product specifications.\r\n AluminumAvailable in all colors.Road bikeIntermediate to Professional riders","rowguid":"94ffb702-0cbc-4e3f-b840-c51f0d11c8f6","ModifiedDate":"2005-06-01T00:00:00"} 26 | {"ProductModelID":26,"Name":"Road-250","CatalogDescription":null,"rowguid":"3770c5e3-8dc9-43c7-b735-7aff21645d96","ModifiedDate":"2006-06-01T00:00:00"} 27 | {"ProductModelID":27,"Name":"Road-350-W","CatalogDescription":null,"rowguid":"dfe49035-7720-4ff4-b28b-16250ee46259","ModifiedDate":"2007-06-01T00:00:00"} 28 | {"ProductModelID":28,"Name":"Road-450","CatalogDescription":"A true multi-sport bike that offers streamlined riding and a revolutionary design.\r\n\t\t\t Aerodynamic design lets you ride with the pros, and the gearing will conquer hilly roads.\r\n AdventureWorks2002HTTP://www.Adventure-works.comThese are the product highlights.\r\n 1 yearparts and labor5 yearsmaintenance contact available through dealerIncredibly strong professional grade handlebar.Aluminum alloy rim with stainless steel spokes; built for speed on our high quality rubber tires.Comfortable saddle with bump absorping rubber bumpers.Top-of-the-line clipless pedals with adjustable tension.aluminum alloy frame\r\n and features a lightweight down-tube milled to the perfect diameter for optimal strength.frontsmall111 These are the product specifications.\r\n Varies Centimeters.\r\n Aluminum AlloyVaries with size Available in all colors.Road bikeNovice to Advanced riders","rowguid":"8456bb94-b4dd-4a47-a76b-d0e54ab4285d","ModifiedDate":"2005-06-01T00:00:00"} 29 | {"ProductModelID":29,"Name":"Road-550-W","CatalogDescription":null,"rowguid":"f85f84f2-9ce0-4ecc-9c29-e78021ffc877","ModifiedDate":"2006-06-01T00:00:00"} 30 | {"ProductModelID":30,"Name":"Road-650","CatalogDescription":null,"rowguid":"42e1c597-6dd9-4071-b1a5-1dc5cdcbdbca","ModifiedDate":"2005-06-01T00:00:00"} 31 | {"ProductModelID":31,"Name":"Road-750","CatalogDescription":null,"rowguid":"2bf795f4-2666-4691-af14-d490c7334a8a","ModifiedDate":"2006-11-20T09:56:38.273"} 32 | {"ProductModelID":32,"Name":"Short-Sleeve Classic Jersey","CatalogDescription":null,"rowguid":"6beccf2d-eacd-496b-995b-d692567565cd","ModifiedDate":"2007-06-01T00:00:00"} 33 | {"ProductModelID":33,"Name":"Sport-100","CatalogDescription":null,"rowguid":"47f7c450-d16a-4cea-be6e-2d6c8c8f81ee","ModifiedDate":"2005-06-01T00:00:00"} 34 | {"ProductModelID":34,"Name":"Touring-1000","CatalogDescription":"Travel in style and comfort. Designed for maximum comfort and safety.\r\n\t\t\tWide gear range takes on all hills. High-tech aluminum alloy construction provides durability without added weight.\r\n AdventureWorks2002HTTP://www.Adventure-works.comThese are the product highlights.\r\n 1 yearparts and labor5 yearsmaintenance contact available through dealerA light yet stiff aluminum bar for long distance riding.Excellent aerodynamic rims guarantee a smooth ride.Cut-out shell for a more comfortable ride.A stable pedal for all-day riding.aluminum alloy frame\r\n and features a lightweight down-tube milled to the perfect diameter for optimal strength.frontsmall87 These are the product specifications.\r\n\r\n Aluminum alloy Available in most colors.Touring bikeNovice to Advanced riders","rowguid":"52e7f2c1-dbff-4518-927d-c7d46f9ed32e","ModifiedDate":"2006-11-20T09:56:38.273"} 35 | {"ProductModelID":35,"Name":"Touring-2000","CatalogDescription":"The plush custom saddle keeps you riding all day, and there's plenty of space\r\n\t\t\t to add panniers and bike bags to the newly-redesigned carrier.\r\n\t\t\t\tThis bike has great stability when fully-loaded.\r\n AdventureWorks2002HTTP://www.Adventure-works.comThese are the product highlights.\r\n 1 yearparts and labor5 yearsmaintenance contact available through dealerA light yet stiff aluminum bar for long distance riding.New design relieves pressure for long rides.Top-of-the-line clipless pedals with adjustable tension. High-strength crank arm. The aluminum frame is custom-shaped for both good looks and strength;\r\n\t\t\t\tit will withstand the most rigorous challenges of daily riding.frontsmall87 These are the product specifications.\r\n AluminumAvailable in all colors except metallic.Touring bikeAluminium alloyIntermediate to Advanced riders","rowguid":"aa10d9e6-e33f-4da8-ace1-992fcd6bb171","ModifiedDate":"2006-11-20T09:56:38.273"} 36 | {"ProductModelID":36,"Name":"Touring-3000","CatalogDescription":null,"rowguid":"f5a6ec78-4451-45db-955f-db197de8b059","ModifiedDate":"2006-11-20T09:56:38.273"} 37 | {"ProductModelID":37,"Name":"Women's Mountain Shorts","CatalogDescription":null,"rowguid":"a08dd61a-6155-4051-9a11-223232ea51cd","ModifiedDate":"2007-06-01T00:00:00"} 38 | {"ProductModelID":38,"Name":"Women's Tights","CatalogDescription":null,"rowguid":"a96ff80d-d52a-432f-9701-731bef16efcc","ModifiedDate":"2006-06-01T00:00:00"} 39 | {"ProductModelID":39,"Name":"Mountain-400","CatalogDescription":null,"rowguid":"37d261a7-00cf-4880-ac1a-533b6b4365b0","ModifiedDate":"2005-06-01T00:00:00"} 40 | {"ProductModelID":40,"Name":"Road-550","CatalogDescription":null,"rowguid":"30450264-4ab8-45e0-8bb5-4d407ea2950a","ModifiedDate":"2006-06-01T00:00:00"} 41 | {"ProductModelID":41,"Name":"Road-350","CatalogDescription":null,"rowguid":"d71bd21c-239e-4c2b-98a3-101962d6b2d3","ModifiedDate":"2006-11-20T09:56:38.273"} 42 | {"ProductModelID":42,"Name":"LL Mountain Front Wheel","CatalogDescription":null,"rowguid":"aa977b32-acd8-4c53-a560-88a02ac1954d","ModifiedDate":"2006-11-20T09:56:38.273"} 43 | {"ProductModelID":43,"Name":"Touring Rear Wheel","CatalogDescription":null,"rowguid":"e878fcaa-61cc-4014-988a-51f52643f7aa","ModifiedDate":"2009-05-16T16:34:28.997"} 44 | {"ProductModelID":44,"Name":"Touring Front Wheel","CatalogDescription":null,"rowguid":"6da78798-3793-4b8e-829e-dba9d140b1d4","ModifiedDate":"2009-05-16T16:34:28.997"} 45 | {"ProductModelID":45,"Name":"ML Mountain Front Wheel","CatalogDescription":null,"rowguid":"c3ff3f93-60a8-4957-b076-b7d0984ee70f","ModifiedDate":"2006-06-01T00:00:00"} 46 | {"ProductModelID":46,"Name":"HL Mountain Front Wheel","CatalogDescription":null,"rowguid":"cca597fb-195f-4ec5-bf5c-15b98d176f4c","ModifiedDate":"2006-06-01T00:00:00"} 47 | {"ProductModelID":47,"Name":"LL Touring Handlebars","CatalogDescription":null,"rowguid":"84138622-1ea6-489f-9c98-6e3924cfbac0","ModifiedDate":"2009-05-16T16:34:29.01"} 48 | {"ProductModelID":48,"Name":"HL Touring Handlebars","CatalogDescription":null,"rowguid":"9da82e49-80ad-4918-9a54-31f4b0c8eabb","ModifiedDate":"2009-05-16T16:34:29.027"} 49 | {"ProductModelID":49,"Name":"LL Road Front Wheel","CatalogDescription":null,"rowguid":"90f759c1-2073-4d9f-854b-c6b6f3bf9162","ModifiedDate":"2006-06-01T00:00:00"} 50 | {"ProductModelID":50,"Name":"ML Road Front Wheel","CatalogDescription":null,"rowguid":"980c8cd0-4903-41f2-9ffc-773c7fe4c254","ModifiedDate":"2006-06-01T00:00:00"} 51 | {"ProductModelID":51,"Name":"HL Road Front Wheel","CatalogDescription":null,"rowguid":"02a562e2-4dfa-4778-bbac-bbddcecf99b0","ModifiedDate":"2006-06-01T00:00:00"} 52 | {"ProductModelID":52,"Name":"LL Mountain Handlebars","CatalogDescription":null,"rowguid":"699c2ac5-5406-46d2-863d-dcfb23fc7943","ModifiedDate":"2006-06-01T00:00:00"} 53 | {"ProductModelID":53,"Name":"Touring Pedal","CatalogDescription":null,"rowguid":"b98a3207-56fc-405c-a040-3c7a90cc7890","ModifiedDate":"2009-05-16T16:34:29.027"} 54 | {"ProductModelID":54,"Name":"ML Mountain Handlebars","CatalogDescription":null,"rowguid":"c9fcc804-2cd7-4b8a-b186-9c409cc19df9","ModifiedDate":"2006-06-01T00:00:00"} 55 | {"ProductModelID":55,"Name":"HL Mountain Handlebars","CatalogDescription":null,"rowguid":"782c991b-a660-4561-a3f4-9bbd74259747","ModifiedDate":"2006-06-01T00:00:00"} 56 | {"ProductModelID":56,"Name":"LL Road Handlebars","CatalogDescription":null,"rowguid":"a7e65199-84a8-437e-ad55-360c1df1d788","ModifiedDate":"2006-06-01T00:00:00"} 57 | {"ProductModelID":57,"Name":"ML Road Handlebars","CatalogDescription":null,"rowguid":"02200aa0-c369-4d77-a67c-75973efda81b","ModifiedDate":"2006-06-01T00:00:00"} 58 | {"ProductModelID":58,"Name":"HL Road Handlebars","CatalogDescription":null,"rowguid":"2489ddc5-1c89-4dec-af22-b0112ccec467","ModifiedDate":"2006-06-01T00:00:00"} 59 | {"ProductModelID":59,"Name":"LL Headset","CatalogDescription":null,"rowguid":"39afbba9-0f6c-44ee-b5e1-32fa93f897e6","ModifiedDate":"2006-06-01T00:00:00"} 60 | {"ProductModelID":60,"Name":"ML Headset","CatalogDescription":null,"rowguid":"6ba9f3b6-e08b-4ac2-a725-b41114c2a283","ModifiedDate":"2006-06-01T00:00:00"} 61 | {"ProductModelID":61,"Name":"HL Headset","CatalogDescription":null,"rowguid":"e196d02e-9bf6-4c67-b772-ed9f86ccf44c","ModifiedDate":"2006-06-01T00:00:00"} 62 | {"ProductModelID":62,"Name":"LL Mountain Pedal","CatalogDescription":null,"rowguid":"8123f7e2-a5f4-4047-b69d-e74313dfebce","ModifiedDate":"2007-06-01T00:00:00"} 63 | {"ProductModelID":63,"Name":"ML Mountain Pedal","CatalogDescription":null,"rowguid":"be9cdc56-f4ab-40f1-b338-2e08e0627abd","ModifiedDate":"2007-06-01T00:00:00"} 64 | {"ProductModelID":64,"Name":"HL Mountain Pedal","CatalogDescription":null,"rowguid":"8da73708-8dae-44ae-ac6c-6e37022c1ffe","ModifiedDate":"2007-06-01T00:00:00"} 65 | {"ProductModelID":65,"Name":"ML Touring Seat/Saddle","CatalogDescription":null,"rowguid":"63a2199f-f5b5-49bd-bcfc-bec1d1d16d8b","ModifiedDate":"2007-06-01T00:00:00"} 66 | {"ProductModelID":66,"Name":"LL Touring Seat/Saddle","CatalogDescription":null,"rowguid":"4a17c43a-1a55-41bb-bc97-612f47cedeb3","ModifiedDate":"2009-05-16T16:34:29.043"} 67 | {"ProductModelID":67,"Name":"HL Touring Seat/Saddle","CatalogDescription":null,"rowguid":"059a2000-7549-4b49-8e0c-2de6b2771ef4","ModifiedDate":"2009-05-16T16:34:29.043"} 68 | {"ProductModelID":68,"Name":"LL Road Pedal","CatalogDescription":null,"rowguid":"218b016c-7454-4193-b518-21955c783d72","ModifiedDate":"2007-06-01T00:00:00"} 69 | {"ProductModelID":69,"Name":"ML Road Pedal","CatalogDescription":null,"rowguid":"3cdf61d6-6209-436f-b235-82e8f159208b","ModifiedDate":"2007-06-01T00:00:00"} 70 | {"ProductModelID":70,"Name":"HL Road Pedal","CatalogDescription":null,"rowguid":"35677b42-72ca-4d9e-a966-dd874b83ef45","ModifiedDate":"2007-06-01T00:00:00"} 71 | {"ProductModelID":71,"Name":"LL Mountain Seat/Saddle 1","CatalogDescription":null,"rowguid":"a166af4c-87bb-41aa-8496-d76b26008fb3","ModifiedDate":"2007-06-01T00:00:00"} 72 | {"ProductModelID":72,"Name":"ML Mountain Seat/Saddle 1","CatalogDescription":null,"rowguid":"baa9405b-68ca-4c18-bc9c-1c4acf49bafc","ModifiedDate":"2007-06-01T00:00:00"} 73 | {"ProductModelID":73,"Name":"HL Mountain Seat/Saddle 1","CatalogDescription":null,"rowguid":"bbe4918f-198d-43c7-9f4b-79bc2aa08f2b","ModifiedDate":"2007-06-01T00:00:00"} 74 | {"ProductModelID":74,"Name":"LL Road Seat/Saddle 2","CatalogDescription":null,"rowguid":"24e3e7d4-4053-4035-9d69-f451642f0c1e","ModifiedDate":"2007-06-01T00:00:00"} 75 | {"ProductModelID":75,"Name":"ML Road Seat/Saddle 1","CatalogDescription":null,"rowguid":"394ed69c-2cc4-4a85-9080-8534112b66fe","ModifiedDate":"2007-06-01T00:00:00"} 76 | {"ProductModelID":76,"Name":"HL Road Seat/Saddle 1","CatalogDescription":null,"rowguid":"b83ab7ae-ba3f-40df-8296-361915a3a60c","ModifiedDate":"2007-06-01T00:00:00"} 77 | {"ProductModelID":77,"Name":"ML Road Rear Wheel","CatalogDescription":null,"rowguid":"15702f98-bd92-4fe8-86bc-52f5fd049d3d","ModifiedDate":"2006-06-01T00:00:00"} 78 | {"ProductModelID":78,"Name":"HL Road Rear Wheel","CatalogDescription":null,"rowguid":"438cbcfa-05ff-4a29-ad95-ecf41dcb83d5","ModifiedDate":"2006-06-01T00:00:00"} 79 | {"ProductModelID":79,"Name":"LL Mountain Seat/Saddle 2","CatalogDescription":null,"rowguid":"8bbeb399-5a87-4e40-9f52-462fb54f2183","ModifiedDate":"2007-06-01T00:00:00"} 80 | {"ProductModelID":80,"Name":"ML Mountain Seat/Saddle 2","CatalogDescription":null,"rowguid":"5cefbb6e-3b7e-414f-ac1b-8f6df741fb21","ModifiedDate":"2007-06-01T00:00:00"} 81 | {"ProductModelID":81,"Name":"HL Mountain Seat/Saddle 2","CatalogDescription":null,"rowguid":"98726f80-e9b9-4141-9cf5-bd2ef07dce25","ModifiedDate":"2007-06-01T00:00:00"} 82 | {"ProductModelID":82,"Name":"LL Road Seat/Saddle 1","CatalogDescription":null,"rowguid":"00ce9171-8944-4d49-ba37-485c1d122f5c","ModifiedDate":"2007-06-01T00:00:00"} 83 | {"ProductModelID":83,"Name":"ML Road Seat/Saddle 2","CatalogDescription":null,"rowguid":"feeb8440-446e-4df8-9482-d529c4fc5e8f","ModifiedDate":"2007-06-01T00:00:00"} 84 | {"ProductModelID":84,"Name":"HL Road Seat/Saddle 2","CatalogDescription":null,"rowguid":"0d3a6ad7-6891-4de9-b14f-e1a841eb220c","ModifiedDate":"2007-06-01T00:00:00"} 85 | {"ProductModelID":85,"Name":"LL Mountain Tire","CatalogDescription":null,"rowguid":"e3cdc5dd-27c3-4891-9d5e-0d46d1b8457f","ModifiedDate":"2007-06-01T00:00:00"} 86 | {"ProductModelID":86,"Name":"ML Mountain Tire","CatalogDescription":null,"rowguid":"0434f63a-a361-4d0b-a9fc-8ac2a866ce85","ModifiedDate":"2007-06-01T00:00:00"} 87 | {"ProductModelID":87,"Name":"HL Mountain Tire","CatalogDescription":null,"rowguid":"ce1b1064-6679-4212-8f56-2b2617ec56a5","ModifiedDate":"2007-06-01T00:00:00"} 88 | {"ProductModelID":88,"Name":"LL Road Tire","CatalogDescription":null,"rowguid":"e7b00dff-8136-4947-b503-994584cc89e7","ModifiedDate":"2007-06-01T00:00:00"} 89 | {"ProductModelID":89,"Name":"ML Road Tire","CatalogDescription":null,"rowguid":"d566eb0f-6945-43d8-bc40-bb3d2f4ef7ed","ModifiedDate":"2007-06-01T00:00:00"} 90 | {"ProductModelID":90,"Name":"HL Road Tire","CatalogDescription":null,"rowguid":"a4b205df-955a-494e-8428-1898aea76f24","ModifiedDate":"2007-06-01T00:00:00"} 91 | {"ProductModelID":91,"Name":"Touring Tire","CatalogDescription":null,"rowguid":"3bcc63d6-9340-4b93-b5f2-73fa90758bf5","ModifiedDate":"2007-06-01T00:00:00"} 92 | {"ProductModelID":92,"Name":"Mountain Tire Tube","CatalogDescription":null,"rowguid":"8cfbe7f2-eec3-4ba6-8187-c8a3614f1f0b","ModifiedDate":"2007-06-01T00:00:00"} 93 | {"ProductModelID":93,"Name":"Road Tire Tube","CatalogDescription":null,"rowguid":"2771d2d2-2e35-4c12-966e-ce9070df6d53","ModifiedDate":"2007-06-01T00:00:00"} 94 | {"ProductModelID":94,"Name":"Touring Tire Tube","CatalogDescription":null,"rowguid":"deeea9bc-3c8c-4e73-b6b0-64c81a5d99e3","ModifiedDate":"2007-06-01T00:00:00"} 95 | {"ProductModelID":95,"Name":"LL Bottom Bracket","CatalogDescription":null,"rowguid":"217e7475-d3f4-46fa-836a-d9e53103e71b","ModifiedDate":"2007-06-01T00:00:00"} 96 | {"ProductModelID":96,"Name":"ML Bottom Bracket","CatalogDescription":null,"rowguid":"09caa74e-f47b-4fca-b206-9d3e46df9751","ModifiedDate":"2007-06-01T00:00:00"} 97 | {"ProductModelID":97,"Name":"HL Bottom Bracket","CatalogDescription":null,"rowguid":"816360e1-3dee-4568-bf2f-9828243d887b","ModifiedDate":"2007-06-01T00:00:00"} 98 | {"ProductModelID":98,"Name":"Chain","CatalogDescription":null,"rowguid":"aca920b2-d0f9-49f3-b879-573202b08c2f","ModifiedDate":"2007-06-01T00:00:00"} 99 | {"ProductModelID":99,"Name":"LL Crankset","CatalogDescription":null,"rowguid":"5b59f032-9b73-4d90-b252-eafd6a871ff1","ModifiedDate":"2007-06-01T00:00:00"} 100 | {"ProductModelID":100,"Name":"ML Crankset","CatalogDescription":null,"rowguid":"68c6cb29-d94a-40c5-aaad-90aa6e7c5ea1","ModifiedDate":"2007-06-01T00:00:00"} 101 | {"ProductModelID":101,"Name":"HL Crankset","CatalogDescription":null,"rowguid":"809668a3-d492-41fb-a196-cfe092a12aa2","ModifiedDate":"2007-06-01T00:00:00"} 102 | {"ProductModelID":102,"Name":"Front Brakes","CatalogDescription":null,"rowguid":"1099a23a-c9ed-41b1-8cc1-e2c1c54a10c8","ModifiedDate":"2007-06-01T00:00:00"} 103 | {"ProductModelID":103,"Name":"Front Derailleur","CatalogDescription":null,"rowguid":"10e0c8fd-ca13-437b-8e22-51853ae160a7","ModifiedDate":"2007-06-01T00:00:00"} 104 | {"ProductModelID":104,"Name":"LL Fork","CatalogDescription":null,"rowguid":"0481d7e1-4970-4efa-a560-020f6579918d","ModifiedDate":"2006-06-01T00:00:00"} 105 | {"ProductModelID":105,"Name":"ML Fork","CatalogDescription":null,"rowguid":"5f115aa4-0553-4478-84b3-5dcf3abe0d08","ModifiedDate":"2006-06-01T00:00:00"} 106 | {"ProductModelID":106,"Name":"HL Fork","CatalogDescription":null,"rowguid":"7706a8fd-9513-40bc-95e8-301b55b67db2","ModifiedDate":"2006-06-01T00:00:00"} 107 | {"ProductModelID":107,"Name":"Hydration Pack","CatalogDescription":null,"rowguid":"cfeef30f-f059-4447-92a8-47001e69f3db","ModifiedDate":"2007-06-01T00:00:00"} 108 | {"ProductModelID":108,"Name":"Taillight","CatalogDescription":null,"rowguid":"dba643d4-4cf2-4507-b947-e817d8c5792b","ModifiedDate":"2006-06-01T00:00:00"} 109 | {"ProductModelID":109,"Name":"Headlights - Dual-Beam","CatalogDescription":null,"rowguid":"7b17ebf1-cb73-4934-9689-1dc26cf22d9c","ModifiedDate":"2006-06-01T00:00:00"} 110 | {"ProductModelID":110,"Name":"Headlights - Weatherproof","CatalogDescription":null,"rowguid":"1fadb88f-af88-4e94-bb1e-6158c48e6b40","ModifiedDate":"2006-06-01T00:00:00"} 111 | {"ProductModelID":111,"Name":"Water Bottle","CatalogDescription":null,"rowguid":"3688268a-260c-48bf-bf71-fff350d4d3d5","ModifiedDate":"2007-06-01T00:00:00"} 112 | {"ProductModelID":112,"Name":"Mountain Bottle Cage","CatalogDescription":null,"rowguid":"2194e65b-9c13-46e1-a655-3ebff8a96719","ModifiedDate":"2007-06-01T00:00:00"} 113 | {"ProductModelID":113,"Name":"Road Bottle Cage","CatalogDescription":null,"rowguid":"9416c2dd-55d8-469d-8edf-ef447c511897","ModifiedDate":"2007-06-01T00:00:00"} 114 | {"ProductModelID":114,"Name":"Patch kit","CatalogDescription":null,"rowguid":"7c738101-c01e-45a2-a0e0-b28aeba1dc40","ModifiedDate":"2007-06-01T00:00:00"} 115 | {"ProductModelID":115,"Name":"Cable Lock","CatalogDescription":null,"rowguid":"e7e17f11-a7fd-4c3c-b701-68f0ae26143e","ModifiedDate":"2006-06-01T00:00:00"} 116 | {"ProductModelID":116,"Name":"Minipump","CatalogDescription":null,"rowguid":"90cef1a7-d817-403e-814c-40e305eeefef","ModifiedDate":"2006-06-01T00:00:00"} 117 | {"ProductModelID":117,"Name":"Mountain Pump","CatalogDescription":null,"rowguid":"b35598f6-b413-4138-8081-5dc7d4c64b64","ModifiedDate":"2006-06-01T00:00:00"} 118 | {"ProductModelID":118,"Name":"Hitch Rack - 4-Bike","CatalogDescription":null,"rowguid":"f570e0d1-e978-4ff2-b5b1-08f01ab60219","ModifiedDate":"2007-06-01T00:00:00"} 119 | {"ProductModelID":119,"Name":"Bike Wash","CatalogDescription":null,"rowguid":"90b1b93d-ebc8-44a2-ac08-cdd1d20ca39c","ModifiedDate":"2007-06-01T00:00:00"} 120 | {"ProductModelID":120,"Name":"Touring-Panniers","CatalogDescription":null,"rowguid":"f06999a1-3aa7-4e85-b8cb-049eb2c391fa","ModifiedDate":"2006-06-01T00:00:00"} 121 | {"ProductModelID":121,"Name":"Fender Set - Mountain","CatalogDescription":null,"rowguid":"c88d1136-a8bb-46bb-94aa-8c1854f813cc","ModifiedDate":"2007-06-01T00:00:00"} 122 | {"ProductModelID":122,"Name":"All-Purpose Bike Stand","CatalogDescription":null,"rowguid":"6eab8607-d927-40e1-af30-d8a2a953050c","ModifiedDate":"2007-06-01T00:00:00"} 123 | {"ProductModelID":123,"Name":"LL Mountain Rear Wheel","CatalogDescription":null,"rowguid":"29521f66-2926-471f-867b-668b0b9ec2b0","ModifiedDate":"2006-06-01T00:00:00"} 124 | {"ProductModelID":124,"Name":"ML Mountain Rear Wheel","CatalogDescription":null,"rowguid":"d968d774-778e-4399-a3c5-375176418229","ModifiedDate":"2006-06-01T00:00:00"} 125 | {"ProductModelID":125,"Name":"HL Mountain Rear Wheel","CatalogDescription":null,"rowguid":"95450545-adf7-48f3-899e-964de8920dc6","ModifiedDate":"2006-06-01T00:00:00"} 126 | {"ProductModelID":126,"Name":"LL Road Rear Wheel","CatalogDescription":null,"rowguid":"95946bd4-c6d9-4344-8066-317d8957ea21","ModifiedDate":"2006-06-01T00:00:00"} 127 | {"ProductModelID":127,"Name":"Rear Derailleur","CatalogDescription":null,"rowguid":"f9327e5d-f8b6-40c5-bfa9-63f886bdfc24","ModifiedDate":"2007-06-01T00:00:00"} 128 | {"ProductModelID":128,"Name":"Rear Brakes","CatalogDescription":null,"rowguid":"71d47afd-da3a-43f1-83ad-69c71f96ef33","ModifiedDate":"2007-06-01T00:00:00"} 129 | -------------------------------------------------------------------------------- /JSON/AdventureWorks/SalesLT_SalesOrderHeader_20200716.json: -------------------------------------------------------------------------------- 1 | {"SalesOrderID":71774,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71774","PurchaseOrderNumber":"PO348186287","AccountNumber":"10-4020-000609","CustomerID":29847,"ShipToAddressID":1092,"BillToAddressID":1092,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":880.3484,"TaxAmt":70.4279,"Freight":22.0087,"TotalDue":972.7850,"Comment":null,"rowguid":"89e42cdc-8506-48a2-b89b-eb3e64e3554e","ModifiedDate":"2008-06-08T00:00:00"} 2 | {"SalesOrderID":71776,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71776","PurchaseOrderNumber":"PO19952192051","AccountNumber":"10-4020-000106","CustomerID":30072,"ShipToAddressID":640,"BillToAddressID":640,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":78.8100,"TaxAmt":6.3048,"Freight":1.9703,"TotalDue":87.0851,"Comment":null,"rowguid":"8a3448c5-e677-4158-a29b-dd33069be0b0","ModifiedDate":"2008-06-08T00:00:00"} 3 | {"SalesOrderID":71780,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71780","PurchaseOrderNumber":"PO19604173239","AccountNumber":"10-4020-000340","CustomerID":30113,"ShipToAddressID":653,"BillToAddressID":653,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":38418.6895,"TaxAmt":3073.4952,"Freight":960.4672,"TotalDue":42452.6519,"Comment":null,"rowguid":"a47665d2-7ac9-4cf3-8a8b-2a3883554284","ModifiedDate":"2008-06-08T00:00:00"} 4 | {"SalesOrderID":71782,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71782","PurchaseOrderNumber":"PO19372114749","AccountNumber":"10-4020-000582","CustomerID":29485,"ShipToAddressID":1086,"BillToAddressID":1086,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":39785.3304,"TaxAmt":3182.8264,"Freight":994.6333,"TotalDue":43962.7901,"Comment":null,"rowguid":"f1be45a5-5c57-4a50-93c6-5f8be44cb7cb","ModifiedDate":"2008-06-08T00:00:00"} 5 | {"SalesOrderID":71783,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71783","PurchaseOrderNumber":"PO19343113609","AccountNumber":"10-4020-000024","CustomerID":29957,"ShipToAddressID":992,"BillToAddressID":992,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":83858.4261,"TaxAmt":6708.6741,"Freight":2096.4607,"TotalDue":92663.5609,"Comment":null,"rowguid":"7db2329e-6446-42a8-8915-9c8370b68ed8","ModifiedDate":"2008-06-08T00:00:00"} 6 | {"SalesOrderID":71784,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71784","PurchaseOrderNumber":"PO19285135919","AccountNumber":"10-4020-000448","CustomerID":29736,"ShipToAddressID":659,"BillToAddressID":659,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":108561.8317,"TaxAmt":8684.9465,"Freight":2714.0458,"TotalDue":119960.8240,"Comment":null,"rowguid":"ca31f324-2c32-4f8d-95eb-596e7f343027","ModifiedDate":"2008-06-08T00:00:00"} 7 | {"SalesOrderID":71796,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71796","PurchaseOrderNumber":"PO17052159664","AccountNumber":"10-4020-000420","CustomerID":29660,"ShipToAddressID":1058,"BillToAddressID":1058,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":57634.6342,"TaxAmt":4610.7707,"Freight":1440.8659,"TotalDue":63686.2708,"Comment":null,"rowguid":"917ef5ba-f32d-4563-8588-66db0bcdc846","ModifiedDate":"2008-06-08T00:00:00"} 8 | {"SalesOrderID":71797,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71797","PurchaseOrderNumber":"PO16501134889","AccountNumber":"10-4020-000142","CustomerID":29796,"ShipToAddressID":642,"BillToAddressID":642,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":78029.6898,"TaxAmt":6242.3752,"Freight":1950.7422,"TotalDue":86222.8072,"Comment":null,"rowguid":"bb3fee84-c8bf-4dd2-bcca-675ab6a11c38","ModifiedDate":"2008-06-08T00:00:00"} 9 | {"SalesOrderID":71815,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71815","PurchaseOrderNumber":"PO13021155785","AccountNumber":"10-4020-000276","CustomerID":30089,"ShipToAddressID":1034,"BillToAddressID":1034,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":1141.5782,"TaxAmt":91.3263,"Freight":28.5395,"TotalDue":1261.4440,"Comment":null,"rowguid":"2aa5f39b-1096-4a4b-b17b-f10504a397ce","ModifiedDate":"2008-06-08T00:00:00"} 10 | {"SalesOrderID":71816,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71816","PurchaseOrderNumber":"PO12992180445","AccountNumber":"10-4020-000295","CustomerID":30027,"ShipToAddressID":1038,"BillToAddressID":1038,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":3398.1659,"TaxAmt":271.8533,"Freight":84.9541,"TotalDue":3754.9733,"Comment":null,"rowguid":"e3c189e7-98de-4c40-b6c2-0d1d13f9bb33","ModifiedDate":"2008-06-08T00:00:00"} 11 | {"SalesOrderID":71831,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71831","PurchaseOrderNumber":"PO10295111084","AccountNumber":"10-4020-000322","CustomerID":30019,"ShipToAddressID":652,"BillToAddressID":652,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":2016.3408,"TaxAmt":161.3073,"Freight":50.4085,"TotalDue":2228.0566,"Comment":null,"rowguid":"625d76fc-c26f-4149-bf24-939fb2bccd77","ModifiedDate":"2008-06-08T00:00:00"} 12 | {"SalesOrderID":71832,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71832","PurchaseOrderNumber":"PO10353140756","AccountNumber":"10-4020-000088","CustomerID":29922,"ShipToAddressID":639,"BillToAddressID":639,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":35775.2113,"TaxAmt":2862.0169,"Freight":894.3803,"TotalDue":39531.6085,"Comment":null,"rowguid":"addb8620-432a-456e-8470-1bedd4bc3457","ModifiedDate":"2008-06-08T00:00:00"} 13 | {"SalesOrderID":71845,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71845","PurchaseOrderNumber":"PO2697119362","AccountNumber":"10-4020-000187","CustomerID":29938,"ShipToAddressID":1020,"BillToAddressID":1020,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":41622.0511,"TaxAmt":3329.7641,"Freight":1040.5513,"TotalDue":45992.3665,"Comment":null,"rowguid":"e68f7ee9-c581-45cd-9c4f-386aeda74d84","ModifiedDate":"2008-06-08T00:00:00"} 14 | {"SalesOrderID":71846,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71846","PurchaseOrderNumber":"PO2378131604","AccountNumber":"10-4020-000635","CustomerID":30102,"ShipToAddressID":669,"BillToAddressID":669,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":2453.7645,"TaxAmt":196.3012,"Freight":61.3441,"TotalDue":2711.4098,"Comment":null,"rowguid":"a86d90ad-d1c0-440d-9a57-5b763bf18234","ModifiedDate":"2008-06-08T00:00:00"} 15 | {"SalesOrderID":71856,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71856","PurchaseOrderNumber":"PO16530177647","AccountNumber":"10-4020-000601","CustomerID":30033,"ShipToAddressID":1090,"BillToAddressID":1090,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":602.1946,"TaxAmt":48.1756,"Freight":15.0549,"TotalDue":665.4251,"Comment":null,"rowguid":"05fee073-0640-4a3c-914d-fe4ae6da3d43","ModifiedDate":"2008-06-08T00:00:00"} 16 | {"SalesOrderID":71858,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71858","PurchaseOrderNumber":"PO16153112278","AccountNumber":"10-4020-000186","CustomerID":29653,"ShipToAddressID":1019,"BillToAddressID":1019,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":13823.7083,"TaxAmt":1105.8967,"Freight":345.5927,"TotalDue":15275.1977,"Comment":null,"rowguid":"5ef091e1-a0af-437d-85ed-0b557c7923f7","ModifiedDate":"2008-06-08T00:00:00"} 17 | {"SalesOrderID":71863,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71863","PurchaseOrderNumber":"PO16124166561","AccountNumber":"10-4020-000649","CustomerID":29975,"ShipToAddressID":1098,"BillToAddressID":1098,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":3324.2759,"TaxAmt":265.9421,"Freight":83.1069,"TotalDue":3673.3249,"Comment":null,"rowguid":"3ed03b56-a4bf-4872-9471-bc6c7893eab7","ModifiedDate":"2008-06-08T00:00:00"} 18 | {"SalesOrderID":71867,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71867","PurchaseOrderNumber":"PO13050111529","AccountNumber":"10-4020-000160","CustomerID":29644,"ShipToAddressID":643,"BillToAddressID":643,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":1059.3100,"TaxAmt":84.7448,"Freight":26.4828,"TotalDue":1170.5376,"Comment":null,"rowguid":"29743c1b-d3af-4cfe-bd2e-6de436e3398f","ModifiedDate":"2008-06-08T00:00:00"} 19 | {"SalesOrderID":71885,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71885","PurchaseOrderNumber":"PO6119130779","AccountNumber":"10-4020-000268","CustomerID":29612,"ShipToAddressID":649,"BillToAddressID":649,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":550.3860,"TaxAmt":44.0309,"Freight":13.7597,"TotalDue":608.1766,"Comment":null,"rowguid":"caad090d-56a6-444e-af24-7bee7605f120","ModifiedDate":"2008-06-08T00:00:00"} 20 | {"SalesOrderID":71895,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71895","PurchaseOrderNumber":"PO3770176273","AccountNumber":"10-4020-000151","CustomerID":29584,"ShipToAddressID":1014,"BillToAddressID":1014,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":246.7392,"TaxAmt":19.7391,"Freight":6.1685,"TotalDue":272.6468,"Comment":null,"rowguid":"07a17c0a-7f9a-4413-a035-519e5a4573be","ModifiedDate":"2008-06-08T00:00:00"} 21 | {"SalesOrderID":71897,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71897","PurchaseOrderNumber":"PO4785152479","AccountNumber":"10-4020-000223","CustomerID":29877,"ShipToAddressID":1026,"BillToAddressID":1026,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":12685.8899,"TaxAmt":1014.8712,"Freight":317.1472,"TotalDue":14017.9083,"Comment":null,"rowguid":"f88b3458-e0cf-4248-9b72-1805351463b2","ModifiedDate":"2008-06-08T00:00:00"} 22 | {"SalesOrderID":71898,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71898","PurchaseOrderNumber":"PO5713190501","AccountNumber":"10-4020-000052","CustomerID":29932,"ShipToAddressID":637,"BillToAddressID":637,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":63980.9884,"TaxAmt":5118.4791,"Freight":1599.5247,"TotalDue":70698.9922,"Comment":null,"rowguid":"96f84d24-3355-43d2-b5a3-55e97c17e58c","ModifiedDate":"2008-06-08T00:00:00"} 23 | {"SalesOrderID":71899,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71899","PurchaseOrderNumber":"PO4582142611","AccountNumber":"10-4020-000025","CustomerID":29568,"ShipToAddressID":993,"BillToAddressID":993,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":2415.6727,"TaxAmt":193.2538,"Freight":60.3918,"TotalDue":2669.3183,"Comment":null,"rowguid":"31d41e8f-6f43-4cae-bee3-3cccb262f231","ModifiedDate":"2008-06-08T00:00:00"} 24 | {"SalesOrderID":71902,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71902","PurchaseOrderNumber":"PO5539125166","AccountNumber":"10-4020-000061","CustomerID":29929,"ShipToAddressID":999,"BillToAddressID":999,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":74058.8078,"TaxAmt":5924.7046,"Freight":1851.4702,"TotalDue":81834.9826,"Comment":null,"rowguid":"137850d6-efdf-4de1-920f-5757a86cdaaf","ModifiedDate":"2008-06-08T00:00:00"} 25 | {"SalesOrderID":71915,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71915","PurchaseOrderNumber":"PO2349143275","AccountNumber":"10-4020-000006","CustomerID":29638,"ShipToAddressID":989,"BillToAddressID":989,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":2137.2310,"TaxAmt":170.9785,"Freight":53.4308,"TotalDue":2361.6403,"Comment":null,"rowguid":"0bcb3d9c-9008-4b99-bb45-928adae7be6b","ModifiedDate":"2008-06-08T00:00:00"} 26 | {"SalesOrderID":71917,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71917","PurchaseOrderNumber":"PO29111718","AccountNumber":"10-4020-000304","CustomerID":30025,"ShipToAddressID":651,"BillToAddressID":651,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":40.9045,"TaxAmt":3.2724,"Freight":1.0226,"TotalDue":45.1995,"Comment":null,"rowguid":"6e903ea3-1b9e-4232-94c3-81c15669f830","ModifiedDate":"2008-06-08T00:00:00"} 27 | {"SalesOrderID":71920,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71920","PurchaseOrderNumber":"PO4002189853","AccountNumber":"10-4020-000674","CustomerID":29982,"ShipToAddressID":1102,"BillToAddressID":1102,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":2980.7929,"TaxAmt":238.4634,"Freight":74.5198,"TotalDue":3293.7761,"Comment":null,"rowguid":"6228c9cb-1cab-4e32-98ca-d0dae5fe563e","ModifiedDate":"2008-06-08T00:00:00"} 28 | {"SalesOrderID":71923,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71923","PurchaseOrderNumber":"PO174173096","AccountNumber":"10-4020-000277","CustomerID":29781,"ShipToAddressID":1035,"BillToAddressID":1035,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":106.5408,"TaxAmt":8.5233,"Freight":2.6635,"TotalDue":117.7276,"Comment":null,"rowguid":"f9899f3f-b4b6-4756-b013-96c16be20427","ModifiedDate":"2008-06-08T00:00:00"} 29 | {"SalesOrderID":71935,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71935","PurchaseOrderNumber":"PO7946145876","AccountNumber":"10-4020-000438","CustomerID":29531,"ShipToAddressID":1061,"BillToAddressID":1061,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":6634.2961,"TaxAmt":530.7437,"Freight":165.8574,"TotalDue":7330.8972,"Comment":null,"rowguid":"7033c6ec-b12c-45bc-bd96-56efde4c7dd0","ModifiedDate":"2008-06-08T00:00:00"} 30 | {"SalesOrderID":71936,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71936","PurchaseOrderNumber":"PO8671170385","AccountNumber":"10-4020-000502","CustomerID":30050,"ShipToAddressID":662,"BillToAddressID":662,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":98278.6910,"TaxAmt":7862.2953,"Freight":2456.9673,"TotalDue":108597.9536,"Comment":null,"rowguid":"119db56a-a97e-414d-b41c-64886fc50ab7","ModifiedDate":"2008-06-08T00:00:00"} 31 | {"SalesOrderID":71938,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71938","PurchaseOrderNumber":"PO8468183315","AccountNumber":"10-4020-000016","CustomerID":29546,"ShipToAddressID":635,"BillToAddressID":635,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":88812.8625,"TaxAmt":7105.0290,"Freight":2220.3216,"TotalDue":98138.2131,"Comment":null,"rowguid":"a36ee74a-cf0d-4024-a1ce-4eaffd1f85f0","ModifiedDate":"2008-06-08T00:00:00"} 32 | {"SalesOrderID":71946,"RevisionNumber":2,"OrderDate":"2008-06-01T00:00:00","DueDate":"2008-06-13T00:00:00","ShipDate":"2008-06-08T00:00:00","Status":5,"OnlineOrderFlag":false,"SalesOrderNumber":"SO71946","PurchaseOrderNumber":"PO8961158629","AccountNumber":"10-4020-000466","CustomerID":29741,"ShipToAddressID":660,"BillToAddressID":660,"ShipMethod":"CARGO TRANSPORT 5","CreditCardApprovalCode":null,"SubTotal":38.9536,"TaxAmt":3.1163,"Freight":0.9738,"TotalDue":43.0437,"Comment":null,"rowguid":"10e3129d-657f-46f9-86f5-cedd79b1901c","ModifiedDate":"2008-06-08T00:00:00"} 33 | -------------------------------------------------------------------------------- /Parquet/AdventureWorks/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Parquet/AdventureWorks/Sales_SalesOrderHeader_20200723.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techtalkcorner/SampleDemoFiles/897748622f520bc686733f50835c4021fdd9397c/Parquet/AdventureWorks/Sales_SalesOrderHeader_20200723.parquet -------------------------------------------------------------------------------- /Parquet/AdventureWorks/Sales_SalesTerritory_20200723.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techtalkcorner/SampleDemoFiles/897748622f520bc686733f50835c4021fdd9397c/Parquet/AdventureWorks/Sales_SalesTerritory_20200723.parquet -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Sample Demo Files 2 | Demo files for tutorials will be publish in this directory. 3 | --------------------------------------------------------------------------------