forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMsSql2008DialectLinqReadonlyCreateScript.sql
3991 lines (3991 loc) · 1.78 MB
/
MsSql2008DialectLinqReadonlyCreateScript.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/****** Object: Table [dbo].[Physicians] Script Date: 06/17/2010 13:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Physicians](
[PhysicianId] [bigint] IDENTITY(1,1) NOT NULL,
[Name] [nvarchar](255) NOT NULL,
PRIMARY KEY CLUSTERED
(
[PhysicianId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET IDENTITY_INSERT [dbo].[Physicians] ON
INSERT [dbo].[Physicians] ([PhysicianId], [Name]) VALUES (1, N'Dr Dobbs')
INSERT [dbo].[Physicians] ([PhysicianId], [Name]) VALUES (2, N'Dr Watson')
SET IDENTITY_INSERT [dbo].[Physicians] OFF
/****** Object: Table [dbo].[Region] Script Date: 06/17/2010 13:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Region](
[RegionId] [bigint] IDENTITY(1,1) NOT NULL,
[RegionDescription] [nvarchar](50) NOT NULL,
PRIMARY KEY CLUSTERED
(
[RegionId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Suppliers] Script Date: 06/17/2010 13:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Suppliers](
[SupplierId] [int] NOT NULL,
[CompanyName] [nvarchar](40) NOT NULL,
[ContactName] [nvarchar](30) NULL,
[ContactTitle] [nvarchar](30) NULL,
[HomePage] [nvarchar](255) NULL,
[Address] [nvarchar](60) NULL,
[City] [nvarchar](15) NULL,
[Region] [nvarchar](15) NULL,
[PostalCode] [nvarchar](10) NULL,
[Country] [nvarchar](15) NULL,
[Phone] [nvarchar](24) NULL,
[Fax] [nvarchar](24) NULL,
PRIMARY KEY CLUSTERED
(
[SupplierId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
CREATE TABLE [dbo].[NumericEntity](
[Short] [smallint] IDENTITY(1,1) NOT NULL,
[NullableShort] [smallint] NULL,
[Integer] [int] NOT NULL,
[NullableInteger] [int] NULL,
[Long] [bigint] NOT NULL,
[NullableLong] [bigint] NULL,
[Decimal] [decimal](19, 5) NOT NULL,
[NullableDecimal] [decimal](19, 5) NULL,
[Single] [real] NOT NULL,
[NullableSingle] [real] NULL,
[Double] [float] NOT NULL,
[NullableDouble] [float] NULL,
PRIMARY KEY CLUSTERED
(
[Short] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (1, N'Exotic Liquids', N'Charlotte Cooper', N'Purchasing Manager', N'', N'49 Gilbert St.', N'London', N'', N'EC1 4SD', N'UK', N'(171) 555-2222', N'')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (2, N'New Orleans Cajun Delights', N'Shelley Burke', N'Order Administrator', N'#CAJUN.HTM#', N'P.O. Box 78934', N'New Orleans', N'LA', N'70117', N'USA', N'(100) 555-4822', N'')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (3, N'Grandma Kelly''s Homestead', N'Regina Murphy', N'Sales Representative', N'', N'707 Oxford Rd.', N'Ann Arbor', N'MI', N'48104', N'USA', N'(313) 555-5735', N'(313) 555-3349')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (4, N'Tokyo Traders', N'Yoshi Nagase', N'Marketing Manager', N'', N'9-8 Sekimai Musashino-shi', N'Tokyo', N'', N'100', N'Japan', N'(03) 3555-5011', N'')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (5, N'Cooperativa de Quesos ''Las Cabras''', N'Antonio del Valle Saavedra', N'Export Administrator', N'', N'Calle del Rosal 4', N'Oviedo', N'Asturias', N'33007', N'Spain', N'(98) 598 76 54', N'')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (6, N'Mayumi''s', N'Mayumi Ohno', N'Marketing Representative', N'Mayumi''s (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#', N'92 Setsuko Chuo-ku', N'Osaka', N'', N'545', N'Japan', N'(06) 431-7877', N'')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (7, N'Pavlova, Ltd.', N'Ian Devling', N'Marketing Manager', N'', N'74 Rose St. Moonie Ponds', N'Melbourne', N'Victoria', N'3058', N'Australia', N'(03) 444-2343', N'(03) 444-6588')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (8, N'Specialty Biscuits, Ltd.', N'Peter Wilson', N'Sales Representative', N'', N'29 King''s Way', N'Manchester', N'', N'M14 GSD', N'UK', N'(161) 555-4448', N'')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (9, N'PB Knäckebröd AB', N'Lars Peterson', N'Sales Agent', N'', N'Kaloadagatan 13', N'Göteborg', N'', N'S-345 67', N'Sweden', N'031-987 65 43', N'031-987 65 91')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (10, N'Refrescos Americanas LTDA', N'Carlos Diaz', N'Marketing Manager', N'', N'Av. das Americanas 12.890', N'Sao Paulo', N'', N'5442', N'Brazil', N'(11) 555 4640', N'')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (11, N'Heli Süßwaren GmbH & Co. KG', N'Petra Winkler', N'Sales Manager', N'', N'Tiergartenstraße 5', N'Berlin', N'', N'10785', N'Germany', N'(010) 9984510', N'')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (12, N'Plutzer Lebensmittelgroßmärkte AG', N'Martin Bein', N'International Marketing Mgr.', N'Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#', N'Bogenallee 51', N'Frankfurt', N'', N'60439', N'Germany', N'(069) 992755', N'')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (13, N'Nord-Ost-Fisch Handelsgesellschaft mbH', N'Sven Petersen', N'Coordinator Foreign Markets', N'', N'Frahmredder 112a', N'Cuxhaven', N'', N'27478', N'Germany', N'(04721) 8713', N'(04721) 8714')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (14, N'Formaggi Fortini s.r.l.', N'Elio Rossi', N'Sales Representative', N'#FORMAGGI.HTM#', N'Viale Dante, 75', N'Ravenna', N'', N'48100', N'Italy', N'(0544) 60323', N'(0544) 60603')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (15, N'Norske Meierier', N'Beate Vileid', N'Marketing Manager', N'', N'Hatlevegen 5', N'Sandvika', N'', N'1320', N'Norway', N'(0)2-953010', N'')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (16, N'Bigfoot Breweries', N'Cheryl Saylor', N'Regional Account Rep.', N'', N'3400 - 8th Avenue Suite 210', N'Bend', N'OR', N'97101', N'USA', N'(503) 555-9931', N'')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (17, N'Svensk Sjöföda AB', N'Michael Björn', N'Sales Representative', N'', N'Brovallavägen 231', N'Stockholm', N'', N'S-123 45', N'Sweden', N'08-123 45 67', N'')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (18, N'Aux joyeux ecclésiastiques', N'Guylène Nodier', N'Sales Manager', N'', N'203, Rue des Francs-Bourgeois', N'Paris', N'', N'75004', N'France', N'(1) 03.83.00.68', N'(1) 03.83.00.62')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (19, N'New England Seafood Cannery', N'Robb Merchant', N'Wholesale Account Agent', N'', N'Order Processing Dept. 2100 Paul Revere Blvd.', N'Boston', N'MA', N'02134', N'USA', N'(617) 555-3267', N'(617) 555-3389')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (20, N'Leka Trading', N'Chandra Leka', N'Owner', N'', N'471 Serangoon Loop, Suite #402', N'Singapore', N'', N'0512', N'Singapore', N'555-8787', N'')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (21, N'Lyngbysild', N'Niels Petersen', N'Sales Manager', N'', N'Lyngbysild Fiskebakken 10', N'Lyngby', N'', N'2800', N'Denmark', N'43844108', N'43844115')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (22, N'Zaanse Snoepfabriek', N'Dirk Luchte', N'Accounting Manager', N'', N'Verkoop Rijnweg 22', N'Zaandam', N'', N'9999 ZZ', N'Netherlands', N'(12345) 1212', N'(12345) 1210')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (23, N'Karkki Oy', N'Anne Heikkonen', N'Product Manager', N'', N'Valtakatu 12', N'Lappeenranta', N'', N'53120', N'Finland', N'(953) 10956', N'')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (24, N'G''day, Mate', N'Wendy Mackenzie', N'Sales Representative', N'G''day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#', N'170 Prince Edward Parade Hunter''s Hill', N'Sydney', N'NSW', N'2042', N'Australia', N'(02) 555-5914', N'(02) 555-4873')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (25, N'Ma Maison', N'Jean-Guy Lauzon', N'Marketing Manager', N'', N'2960 Rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada', N'(514) 555-9022', N'')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (26, N'Pasta Buttini s.r.l.', N'Giovanni Giudici', N'Order Administrator', N'', N'Via dei Gelsomini, 153', N'Salerno', N'', N'84100', N'Italy', N'(089) 6547665', N'(089) 6547667')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (27, N'Escargots Nouveaux', N'Marie Delamare', N'Sales Manager', N'', N'22, rue H. Voiron', N'Montceau', N'', N'71300', N'France', N'85.57.00.07', N'')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (28, N'Gai pâturage', N'Eliane Noz', N'Sales Representative', N'', N'Bat. B 3, rue des Alpes', N'Annecy', N'', N'74000', N'France', N'38.76.98.06', N'38.76.98.58')
INSERT [dbo].[Suppliers] ([SupplierId], [CompanyName], [ContactName], [ContactTitle], [HomePage], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (29, N'Forêts d''érables', N'Chantal Goulet', N'Accounting Manager', N'', N'148 rue Chasseur', N'Ste-Hyacinthe', N'Québec', N'J2S 7S8', N'Canada', N'(514) 555-2955', N'(514) 555-2921')
/****** Object: Table [dbo].[States] Script Date: 06/17/2010 13:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[States](
[StateId] [bigint] IDENTITY(1,1) NOT NULL,
[Abbreviation] [nvarchar](255) NOT NULL,
[FullName] [nvarchar](255) NOT NULL,
PRIMARY KEY CLUSTERED
(
[StateId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET IDENTITY_INSERT [dbo].[States] ON
INSERT [dbo].[States] ([StateId], [Abbreviation], [FullName]) VALUES (1, N'NY', N'New York')
INSERT [dbo].[States] ([StateId], [Abbreviation], [FullName]) VALUES (2, N'FL', N'Florida')
SET IDENTITY_INSERT [dbo].[States] OFF
/****** Object: Table [dbo].[Shippers] Script Date: 06/17/2010 13:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Shippers](
[ShipperId] [int] NOT NULL,
[CompanyName] [nvarchar](40) NOT NULL,
[Phone] [nvarchar](24) NULL,
[Reference] [uniqueidentifier] NULL,
PRIMARY KEY CLUSTERED
(
[ShipperId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
INSERT [dbo].[Shippers] ([ShipperId], [CompanyName], [Phone], [Reference]) VALUES (1, N'Speedy Express', N'(503) 555-9831', N'356e4a7e-b027-4321-ba40-e2677e6502cf')
INSERT [dbo].[Shippers] ([ShipperId], [CompanyName], [Phone], [Reference]) VALUES (2, N'United Package', N'(503) 555-3199', N'6dfcd0d7-4d2e-4525-a502-3ea9aa52e965')
INSERT [dbo].[Shippers] ([ShipperId], [CompanyName], [Phone], [Reference]) VALUES (3, N'Federal Shipping', N'(503) 555-9931', N'716f114b-e253-4166-8c76-46e6f340b58f')
/****** Object: Table [dbo].[AnotherEntity] Script Date: 06/17/2010 13:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[AnotherEntity](
[Id] [int] IDENTITY(1,1) NOT NULL,
[Output] [nvarchar](255) NULL,
[Input] [nvarchar](255) NULL,
PRIMARY KEY CLUSTERED
(
[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET IDENTITY_INSERT [dbo].[AnotherEntity] ON
INSERT [dbo].[AnotherEntity] ([Id], [Output]) VALUES (1, N'output')
INSERT [dbo].[AnotherEntity] ([Id], [Input]) VALUES (2, N'input')
INSERT [dbo].[AnotherEntity] ([Id], [Input], [Output]) VALUES (3, N'i/o', N'i/o')
INSERT [dbo].[AnotherEntity] ([Id], [Input], [Output]) VALUES (4, N'input', N'output')
INSERT [dbo].[AnotherEntity] ([Id], [Input], [Output]) VALUES (5, NULL, NULL)
SET IDENTITY_INSERT [dbo].[AnotherEntity] OFF
/****** Object: Table [dbo].[Animal] Script Date: 06/17/2010 13:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Animal](
[Id] [int] IDENTITY(1,1) NOT NULL,
[Description] [nvarchar](255) NULL,
[body_weight] [float] NULL,
[mother_id] [int] NULL,
[father_id] [int] NULL,
[SerialNumber] [nvarchar](255) NULL,
[ParentId] [int] NULL,
PRIMARY KEY CLUSTERED
(
[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET IDENTITY_INSERT [dbo].[Animal] ON
INSERT [dbo].[Animal] ([Id], [Description], [body_weight], [mother_id], [father_id], [SerialNumber], [ParentId]) VALUES (1, NULL, 100, NULL, NULL, N'123', NULL)
INSERT [dbo].[Animal] ([Id], [Description], [body_weight], [mother_id], [father_id], [SerialNumber], [ParentId]) VALUES (2, NULL, 40, NULL, NULL, N'789', NULL)
INSERT [dbo].[Animal] ([Id], [Description], [body_weight], [mother_id], [father_id], [SerialNumber], [ParentId]) VALUES (3, NULL, 30, NULL, NULL, N'1234', NULL)
INSERT [dbo].[Animal] ([Id], [Description], [body_weight], [mother_id], [father_id], [SerialNumber], [ParentId]) VALUES (4, NULL, 156, NULL, NULL, N'5678', 1)
INSERT [dbo].[Animal] ([Id], [Description], [body_weight], [mother_id], [father_id], [SerialNumber], [ParentId]) VALUES (5, NULL, 205, NULL, NULL, N'9101', 1)
INSERT [dbo].[Animal] ([Id], [Description], [body_weight], [mother_id], [father_id], [SerialNumber], [ParentId]) VALUES (6, NULL, 115, 5, 4, N'1121', 2)
SET IDENTITY_INSERT [dbo].[Animal] OFF
/****** Object: Table [dbo].[Customers] Script Date: 06/17/2010 13:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Customers](
[CustomerId] [nvarchar](255) NOT NULL,
[CompanyName] [nvarchar](40) NOT NULL,
[ContactName] [nvarchar](30) NULL,
[ContactTitle] [nvarchar](30) NULL,
[Address] [nvarchar](60) NULL,
[City] [nvarchar](15) NULL,
[Region] [nvarchar](15) NULL,
[PostalCode] [nvarchar](10) NULL,
[Country] [nvarchar](15) NULL,
[Phone] [nvarchar](24) NULL,
[Fax] [nvarchar](24) NULL,
PRIMARY KEY CLUSTERED
(
[CustomerId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'ALFKI', N'Alfreds Futterkiste', N'Maria Anders', N'Sales Representative', N'Obere Str. 57', N'Berlin', N'', N'12209', N'Germany', N'030-0074321', N'030-0076545')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'ANATR', N'Ana Trujillo Emparedados y helados', N'Ana Trujillo', N'Owner', N'Avda. de la Constitución 2222', N'México D.F.', N'', N'05021', N'Mexico', N'(5) 555-4729', N'(5) 555-3745')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'ANTON', N'Antonio Moreno Taquería', N'Antonio Moreno', N'Owner', N'Mataderos 2312', N'México D.F.', N'', N'05023', N'Mexico', N'(5) 555-3932', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'AROUT', N'Around the Horn', N'Thomas Hardy', N'Sales Representative', N'120 Hanover Sq.', N'London', N'', N'WA1 1DP', N'UK', N'(171) 555-7788', N'(171) 555-6750')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'BERGS', N'Berglunds snabbköp', N'Christina Berglund', N'Order Administrator', N'Berguvsvägen 8', N'Luleå', N'', N'S-958 22', N'Sweden', N'0921-12 34 65', N'0921-12 34 67')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'BLAUS', N'Blauer See Delikatessen', N'Hanna Moos', N'Sales Representative', N'Forsterstr. 57', N'Mannheim', N'', N'68306', N'Germany', N'0621-08460', N'0621-08924')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'BLONP', N'Blondesddsl père et fils', N'Frédérique Citeaux', N'Marketing Manager', N'24, place Kléber', N'Strasbourg', N'', N'67000', N'France', N'88.60.15.31', N'88.60.15.32')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'BOLID', N'Bólido Comidas preparadas', N'Martín Sommer', N'Owner', N'C/ Araquil, 67', N'Madrid', N'', N'28023', N'Spain', N'(91) 555 22 82', N'(91) 555 91 99')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'BONAP', N'Bon app''', N'Laurence Lebihan', N'Owner', N'12, rue des Bouchers', N'Marseille', N'', N'13008', N'France', N'91.24.45.40', N'91.24.45.41')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'BOTTM', N'Bottom-Dollar Markets', N'Elizabeth Lincoln', N'Accounting Manager', N'23 Tsawassen Blvd.', N'Tsawassen', N'BC', N'T2F 8M4', N'Canada', N'(604) 555-4729', N'(604) 555-3745')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'BSBEV', N'B''s Beverages', N'Victoria Ashworth', N'Sales Representative', N'Fauntleroy Circus', N'London', N'', N'EC2 5NT', N'UK', N'(171) 555-1212', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'CACTU', N'Cactus Comidas para llevar', N'Patricio Simpson', N'Sales Agent', N'Cerrito 333', N'Buenos Aires', N'', N'1010', N'Argentina', N'(1) 135-5555', N'(1) 135-4892')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'CENTC', N'Centro comercial Moctezuma', N'Francisco Chang', N'Marketing Manager', N'Sierras de Granada 9993', N'México D.F.', N'', N'05022', N'Mexico', N'(5) 555-3392', N'(5) 555-7293')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'CHOPS', N'Chop-suey Chinese', N'Yang Wang', N'Owner', N'Hauptstr. 29', N'Bern', N'', N'3012', N'Switzerland', N'0452-076545', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'COMMI', N'Comércio Mineiro', N'Pedro Afonso', N'Sales Associate', N'Av. dos Lusíadas, 23', N'Sao Paulo', N'SP', N'05432-043', N'Brazil', N'(11) 555-7647', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'CONSH', N'Consolidated Holdings', N'Elizabeth Brown', N'Sales Representative', N'Berkeley Gardens 12 Brewery', N'London', N'', N'WX1 6LT', N'UK', N'(171) 555-2282', N'(171) 555-9199')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'DRACD', N'Drachenblut Delikatessen', N'Sven Ottlieb', N'Order Administrator', N'Walserweg 21', N'Aachen', N'', N'52066', N'Germany', N'0241-039123', N'0241-059428')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'DUMON', N'Du monde entier', N'Janine Labrune', N'Owner', N'67, rue des Cinquante Otages', N'Nantes', N'', N'44000', N'France', N'40.67.88.88', N'40.67.89.89')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'EASTC', N'Eastern Connection', N'Ann Devon', N'Sales Agent', N'35 King George', N'London', N'', N'WX3 6FW', N'UK', N'(171) 555-0297', N'(171) 555-3373')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'ERNSH', N'Ernst Handel', N'Roland Mendel', N'Sales Manager', N'Kirchgasse 6', N'Graz', N'', N'8010', N'Austria', N'7675-3425', N'7675-3426')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'FAMIA', N'Familia Arquibaldo', N'Aria Cruz', N'Marketing Assistant', N'Rua Orós, 92', N'Sao Paulo', N'SP', N'05442-030', N'Brazil', N'(11) 555-9857', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'FISSA', N'FISSA Fabrica Inter. Salchichas S.A.', N'Diego Roel', N'Accounting Manager', N'C/ Moralzarzal, 86', N'Madrid', N'', N'28034', N'Spain', N'(91) 555 94 44', N'(91) 555 55 93')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'FOLIG', N'Folies gourmandes', N'Martine Rancé', N'Assistant Sales Agent', N'184, chaussée de Tournai', N'Lille', N'', N'59000', N'France', N'20.16.10.16', N'20.16.10.17')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'FOLKO', N'Folk och fä HB', N'Maria Larsson', N'Owner', N'Åkergatan 24', N'Bräcke', N'', N'S-844 67', N'Sweden', N'0695-34 67 21', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'FRANK', N'Frankenversand', N'Peter Franken', N'Marketing Manager', N'Berliner Platz 43', N'München', N'', N'80805', N'Germany', N'089-0877310', N'089-0877451')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'FRANR', N'France restauration', N'Carine Schmitt', N'Marketing Manager', N'54, rue Royale', N'Nantes', N'', N'44000', N'France', N'40.32.21.21', N'40.32.21.20')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'FRANS', N'Franchi S.p.A.', N'Paolo Accorti', N'Sales Representative', N'Via Monte Bianco 34', N'Torino', N'', N'10100', N'Italy', N'011-4988260', N'011-4988261')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'FURIB', N'Furia Bacalhau e Frutos do Mar', N'Lino Rodriguez', N'Sales Manager', N'Jardim das rosas n. 32', N'Lisboa', N'', N'1675', N'Portugal', N'(1) 354-2534', N'(1) 354-2535')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'GALED', N'Galería del gastrónomo', N'Eduardo Saavedra', N'Marketing Manager', N'Rambla de Cataluña, 23', N'Barcelona', N'', N'08022', N'Spain', N'(93) 203 4560', N'(93) 203 4561')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'GODOS', N'Godos Cocina Típica', N'José Pedro Freyre', N'Sales Manager', N'C/ Romero, 33', N'Sevilla', N'', N'41101', N'Spain', N'(95) 555 82 82', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'GOURL', N'Gourmet Lanchonetes', N'André Fonseca', N'Sales Associate', N'Av. Brasil, 442', N'Campinas', N'SP', N'04876-786', N'Brazil', N'(11) 555-9482', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'GREAL', N'Great Lakes Food Market', N'Howard Snyder', N'Marketing Manager', N'2732 Baker Blvd.', N'Eugene', N'OR', N'97403', N'USA', N'(503) 555-7555', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'GROSR', N'GROSELLA-Restaurante', N'Manuel Pereira', N'Owner', N'5ª Ave. Los Palos Grandes', N'Caracas', N'DF', N'1081', N'Venezuela', N'(2) 283-2951', N'(2) 283-3397')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'HANAR', N'Hanari Carnes', N'Mario Pontes', N'Accounting Manager', N'Rua do Paço, 67', N'Rio de Janeiro', N'RJ', N'05454-876', N'Brazil', N'(21) 555-0091', N'(21) 555-8765')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'HILAA', N'HILARION-Abastos', N'Carlos Hernández', N'Sales Representative', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela', N'(5) 555-1340', N'(5) 555-1948')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'HUNGC', N'Hungry Coyote Import Store', N'Yoshi Latimer', N'Sales Representative', N'City Center Plaza 516 Main St.', N'Elgin', N'OR', N'97827', N'USA', N'(503) 555-6874', N'(503) 555-2376')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'HUNGO', N'Hungry Owl All-Night Grocers', N'Patricia McKenna', N'Sales Associate', N'8 Johnstown Road', N'Cork', N'Co. Cork', N'', N'Ireland', N'2967 542', N'2967 3333')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'ISLAT', N'Island Trading', N'Helen Bennett', N'Marketing Manager', N'Garden House Crowther Way', N'Cowes', N'Isle of Wight', N'PO31 7PJ', N'UK', N'(198) 555-8888', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'KOENE', N'Königlich Essen', N'Philip Cramer', N'Sales Associate', N'Maubelstr. 90', N'Brandenburg', N'', N'14776', N'Germany', N'0555-09876', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LACOR', N'La corne d''abondance', N'Daniel Tonini', N'Sales Representative', N'67, avenue de l''Europe', N'Versailles', N'', N'78000', N'France', N'30.59.84.10', N'30.59.85.11')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LAMAI', N'La maison d''Asie', N'Annette Roulet', N'Sales Manager', N'1 rue Alsace-Lorraine', N'Toulouse', N'', N'31000', N'France', N'61.77.61.10', N'61.77.61.11')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LAUGB', N'Laughing Bacchus Wine Cellars', N'Yoshi Tannamuri', N'Marketing Assistant', N'1900 Oak St.', N'Vancouver', N'BC', N'V3F 2K1', N'Canada', N'(604) 555-3392', N'(604) 555-7293')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LAZYK', N'Lazy K Kountry Store', N'John Steel', N'Marketing Manager', N'12 Orchestra Terrace', N'Walla Walla', N'WA', N'99362', N'USA', N'(509) 555-7969', N'(509) 555-6221')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LEHMS', N'Lehmanns Marktstand', N'Renate Messner', N'Sales Representative', N'Magazinweg 7', N'Frankfurt a.M.', N'', N'60528', N'Germany', N'069-0245984', N'069-0245874')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LETSS', N'Let''s Stop N Shop', N'Jaime Yorres', N'Owner', N'87 Polk St. Suite 5', N'San Francisco', N'CA', N'94117', N'USA', N'(415) 555-5938', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LILAS', N'LILA-Supermercado', N'Carlos González', N'Accounting Manager', N'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', N'Barquisimeto', N'Lara', N'3508', N'Venezuela', N'(9) 331-6954', N'(9) 331-7256')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LINOD', N'LINO-Delicateses', N'Felipe Izquierdo', N'Owner', N'Ave. 5 de Mayo Porlamar', N'I. de Margarita', N'Nueva Esparta', N'4980', N'Venezuela', N'(8) 34-56-12', N'(8) 34-93-93')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'LONEP', N'Lonesome Pine Restaurant', N'Fran Wilson', N'Sales Manager', N'89 Chiaroscuro Rd.', N'Portland', N'OR', N'97219', N'USA', N'(503) 555-9573', N'(503) 555-9646')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'MAGAA', N'Magazzini Alimentari Riuniti', N'Giovanni Rovelli', N'Marketing Manager', N'Via Ludovico il Moro 22', N'Bergamo', N'', N'24100', N'Italy', N'035-640230', N'035-640231')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'MAISD', N'Maison Dewey', N'Catherine Dewey', N'Sales Agent', N'Rue Joseph-Bens 532', N'Bruxelles', N'', N'B-1180', N'Belgium', N'(02) 201 24 67', N'(02) 201 24 68')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'MEREP', N'Mère Paillarde', N'Jean Fresnière', N'Marketing Assistant', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada', N'(514) 555-8054', N'(514) 555-8055')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'MORGK', N'Morgenstern Gesundkost', N'Alexander Feuer', N'Marketing Assistant', N'Heerstr. 22', N'Leipzig', N'', N'04179', N'Germany', N'0342-023176', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'NORTS', N'North/South', N'Simon Crowther', N'Sales Associate', N'South House 300 Queensbridge', N'London', N'', N'SW7 1RZ', N'UK', N'(171) 555-7733', N'(171) 555-2530')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'OCEAN', N'Océano Atlántico Ltda.', N'Yvonne Moncada', N'Sales Agent', N'Ing. Gustavo Moncada 8585 Piso 20-A', N'Buenos Aires', N'', N'1010', N'Argentina', N'(1) 135-5333', N'(1) 135-5535')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'OLDWO', N'Old World Delicatessen', N'Rene Phillips', N'Sales Representative', N'2743 Bering St.', N'Anchorage', N'AK', N'99508', N'USA', N'(907) 555-7584', N'(907) 555-2880')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'OTTIK', N'Ottilies Käseladen', N'Henriette Pfalzheim', N'Owner', N'Mehrheimerstr. 369', N'Köln', N'', N'50739', N'Germany', N'0221-0644327', N'0221-0765721')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'PARIS', N'Paris spécialités', N'Marie Bertrand', N'Owner', N'265, boulevard Charonne', N'Paris', N'', N'75012', N'France', N'(1) 42.34.22.66', N'(1) 42.34.22.77')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'PERIC', N'Pericles Comidas clásicas', N'Guillermo Fernández', N'Sales Representative', N'Calle Dr. Jorge Cash 321', N'México D.F.', N'', N'05033', N'Mexico', N'(5) 552-3745', N'(5) 545-3745')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'PICCO', N'Piccolo und mehr', N'Georg Pipps', N'Sales Manager', N'Geislweg 14', N'Salzburg', N'', N'5020', N'Austria', N'6562-9722', N'6562-9723')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'PRINI', N'Princesa Isabel Vinhos', N'Isabel de Castro', N'Sales Representative', N'Estrada da saúde n. 58', N'Lisboa', N'', N'1756', N'Portugal', N'(1) 356-5634', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'QUEDE', N'Que Delícia', N'Bernardo Batista', N'Accounting Manager', N'Rua da Panificadora, 12', N'Rio de Janeiro', N'RJ', N'02389-673', N'Brazil', N'(21) 555-4252', N'(21) 555-4545')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'QUEEN', N'Queen Cozinha', N'Lúcia Carvalho', N'Marketing Assistant', N'Alameda dos Canàrios, 891', N'Sao Paulo', N'SP', N'05487-020', N'Brazil', N'(11) 555-1189', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'QUICK', N'QUICK-Stop', N'Horst Kloss', N'Accounting Manager', N'Taucherstraße 10', N'Cunewalde', N'', N'01307', N'Germany', N'0372-035188', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'RANCH', N'Rancho grande', N'Sergio Gutiérrez', N'Sales Representative', N'Av. del Libertador 900', N'Buenos Aires', N'', N'1010', N'Argentina', N'(1) 123-5555', N'(1) 123-5556')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'RATTC', N'Rattlesnake Canyon Grocery', N'Paula Wilson', N'Assistant Sales Representative', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA', N'(505) 555-5939', N'(505) 555-3620')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'REGGC', N'Reggiani Caseifici', N'Maurizio Moroni', N'Sales Associate', N'Strada Provinciale 124', N'Reggio Emilia', N'', N'42100', N'Italy', N'0522-556721', N'0522-556722')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'RICAR', N'Ricardo Adocicados', N'Janete Limeira', N'Assistant Sales Agent', N'Av. Copacabana, 267', N'Rio de Janeiro', N'RJ', N'02389-890', N'Brazil', N'(21) 555-3412', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'RICSU', N'Richter Supermarkt', N'Michael Holz', N'Sales Manager', N'Grenzacherweg 237', N'Genève', N'', N'1203', N'Switzerland', N'0897-034214', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'ROMEY', N'Romero y tomillo', N'Alejandra Camino', N'Accounting Manager', N'Gran Vía, 1', N'Madrid', N'', N'28001', N'Spain', N'(91) 745 6200', N'(91) 745 6210')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'SANTG', N'Santé Gourmet', N'Jonas Bergulfsen', N'Owner', N'Erling Skakkes gate 78', N'Stavern', N'', N'4110', N'Norway', N'07-98 92 35', N'07-98 92 47')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'SAVEA', N'Save-a-lot Markets', N'Jose Pavarotti', N'Sales Representative', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA', N'(208) 555-8097', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'SEVES', N'Seven Seas Imports', N'Hari Kumar', N'Sales Manager', N'90 Wadhurst Rd.', N'London', N'', N'OX15 4NB', N'UK', N'(171) 555-1717', N'(171) 555-5646')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'SIMOB', N'Simons bistro', N'Jytte Petersen', N'Owner', N'Vinbæltet 34', N'Kobenhavn', N'', N'1734', N'Denmark', N'31 12 34 56', N'31 13 35 57')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'SPECD', N'Spécialités du monde', N'Dominique Perrier', N'Marketing Manager', N'25, rue Lauriston', N'Paris', N'', N'75016', N'France', N'(1) 47.55.60.10', N'(1) 47.55.60.20')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'SPLIR', N'Split Rail Beer & Ale', N'Art Braunschweiger', N'Sales Manager', N'P.O. Box 555', N'Lander', N'WY', N'82520', N'USA', N'(307) 555-4680', N'(307) 555-6525')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'SUPRD', N'Suprêmes délices', N'Pascale Cartrain', N'Accounting Manager', N'Boulevard Tirou, 255', N'Charleroi', N'', N'B-6000', N'Belgium', N'(071) 23 67 22 20', N'(071) 23 67 22 21')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'THEBI', N'The Big Cheese', N'Liz Nixon', N'Marketing Manager', N'89 Jefferson Way Suite 2', N'Portland', N'OR', N'97201', N'USA', N'(503) 555-3612', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'THECR', N'The Cracker Box', N'Liu Wong', N'Marketing Assistant', N'55 Grizzly Peak Rd.', N'Butte', N'MT', N'59801', N'USA', N'(406) 555-5834', N'(406) 555-8083')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'TOMSP', N'Toms Spezialitäten', N'Karin Josephs', N'Marketing Manager', N'Luisenstr. 48', N'Münster', N'', N'44087', N'Germany', N'0251-031259', N'0251-035695')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'TORTU', N'Tortuga Restaurante', N'Miguel Angel Paolino', N'Owner', N'Avda. Azteca 123', N'México D.F.', N'', N'05033', N'Mexico', N'(5) 555-2933', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'TRADH', N'Tradição Hipermercados', N'Anabela Domingues', N'Sales Representative', N'Av. Inês de Castro, 414', N'Sao Paulo', N'SP', N'05634-030', N'Brazil', N'(11) 555-2167', N'(11) 555-2168')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'TRAIH', N'Trail''s Head Gourmet Provisioners', N'Helvetius Nagy', N'Sales Associate', N'722 DaVinci Blvd.', N'Kirkland', N'WA', N'98034', N'USA', N'(206) 555-8257', N'(206) 555-2174')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'VAFFE', N'Vaffeljernet', N'Palle Ibsen', N'Sales Manager', N'Smagsloget 45', N'Århus', N'', N'8200', N'Denmark', N'86 21 32 43', N'86 22 33 44')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'VICTE', N'Victuailles en stock', N'Mary Saveley', N'Sales Agent', N'2, rue du Commerce', N'Lyon', N'', N'69004', N'France', N'78.32.54.86', N'78.32.54.87')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'VINET', N'Vins et alcools Chevalier', N'Paul Henriot', N'Accounting Manager', N'59 rue de l''Abbaye', N'Reims', N'', N'51100', N'France', N'26.47.15.10', N'26.47.15.11')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'WANDK', N'Die Wandernde Kuh', N'Rita Müller', N'Sales Representative', N'Adenauerallee 900', N'Stuttgart', N'', N'70563', N'Germany', N'0711-020361', N'0711-035428')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'WARTH', N'Wartian Herkku', N'Pirkko Koskitalo', N'Accounting Manager', N'Torikatu 38', N'Oulu', N'', N'90110', N'Finland', N'981-443655', N'981-443655')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'WELLI', N'Wellington Importadora', N'Paula Parente', N'Sales Manager', N'Rua do Mercado, 12', N'Resende', N'SP', N'08737-363', N'Brazil', N'(14) 555-8122', N'')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'WHITC', N'White Clover Markets', N'Karl Jablonski', N'Owner', N'305 - 14th Ave. S. Suite 3B', N'Seattle', N'WA', N'98128', N'USA', N'(206) 555-4112', N'(206) 555-4115')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'WILMK', N'Wilman Kala', N'Matti Karttunen', N'Owner/Marketing Assistant', N'Keskuskatu 45', N'Helsinki', N'', N'21240', N'Finland', N'90-224 8858', N'90-224 8858')
INSERT [dbo].[Customers] ([CustomerId], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (N'WOLZA', N'Wolski Zajazd', N'Zbyszek Piestrzeniewicz', N'Owner', N'ul. Filtrowa 68', N'Warszawa', N'', N'01-012', N'Poland', N'(26) 642-7012', N'(26) 642-7012')
/****** Object: Table [dbo].[Categories] Script Date: 06/17/2010 13:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Categories](
[CategoryId] [int] NOT NULL,
[CategoryName] [nvarchar](15) NOT NULL,
[Description] [nvarchar](255) NULL,
PRIMARY KEY CLUSTERED
(
[CategoryId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
INSERT [dbo].[Categories] ([CategoryId], [CategoryName], [Description]) VALUES (1, N'Beverages', N'Soft drinks, coffees, teas, beers, and ales')
INSERT [dbo].[Categories] ([CategoryId], [CategoryName], [Description]) VALUES (2, N'Condiments', N'Sweet and savory sauces, relishes, spreads, and seasonings')
INSERT [dbo].[Categories] ([CategoryId], [CategoryName], [Description]) VALUES (3, N'Confections', N'Desserts, candies, and sweet breads')
INSERT [dbo].[Categories] ([CategoryId], [CategoryName], [Description]) VALUES (4, N'Dairy Products', N'Cheeses')
INSERT [dbo].[Categories] ([CategoryId], [CategoryName], [Description]) VALUES (5, N'Grains/Cereals', N'Breads, crackers, pasta, and cereal')
INSERT [dbo].[Categories] ([CategoryId], [CategoryName], [Description]) VALUES (6, N'Meat/Poultry', N'Prepared meats')
INSERT [dbo].[Categories] ([CategoryId], [CategoryName], [Description]) VALUES (7, N'Produce', N'Dried fruit and bean curd')
INSERT [dbo].[Categories] ([CategoryId], [CategoryName], [Description]) VALUES (8, N'Seafood', N'Seaweed and fish')
/****** Object: Table [dbo].[Employees] Script Date: 06/17/2010 13:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Employees](
[EmployeeId] [int] NOT NULL,
[LastName] [nvarchar](20) NOT NULL,
[FirstName] [nvarchar](10) NOT NULL,
[Title] [nvarchar](30) NULL,
[TitleOfCourtesy] [nvarchar](25) NULL,
[BirthDate] [datetime] NULL,
[HireDate] [datetime] NULL,
[Address] [nvarchar](60) NULL,
[City] [nvarchar](15) NULL,
[Region] [nvarchar](15) NULL,
[PostalCode] [nvarchar](10) NULL,
[Country] [nvarchar](15) NULL,
[HomePhone] [nvarchar](24) NULL,
[Extension] [nvarchar](4) NULL,
[Notes] [nvarchar](4000) NULL,
[ReportsTo] [int] NULL,
PRIMARY KEY CLUSTERED
(
[EmployeeId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
INSERT [dbo].[Employees] ([EmployeeId], [LastName], [FirstName], [Title], [TitleOfCourtesy], [BirthDate], [HireDate], [Address], [City], [Region], [PostalCode], [Country], [HomePhone], [Extension], [Notes], [ReportsTo]) VALUES (1, N'Davolio', N'Nancy', N'Sales Representative', N'Ms.', CAST(0x000045D100000000 AS DateTime), CAST(0x000083BB00000000 AS DateTime), N'507 - 20th Ave. E.Apt. 2A', N'Seattle', N'WA', N'98122', N'USA', N'(206) 555-9857', N'5467', N'Education includes a BA in psychology from Colorado State University in 1970. She also completed ''The Art of the Cold Call.'' Nancy is a member of Toastmasters International.', NULL)
INSERT [dbo].[Employees] ([EmployeeId], [LastName], [FirstName], [Title], [TitleOfCourtesy], [BirthDate], [HireDate], [Address], [City], [Region], [PostalCode], [Country], [HomePhone], [Extension], [Notes], [ReportsTo]) VALUES (2, N'Fuller', N'Andrew', N'Vice President, Sales', N'Dr.', CAST(0x00004A6100000000 AS DateTime), CAST(0x0000842400000000 AS DateTime), N'908 W. Capital Way', N'Tacoma', N'WA', N'98401', N'USA', N'(206) 555-9482', N'3457', N'Andrew received his BTS commercial in 1974 and a Ph.D. in international marketing from the University of Dallas in 1981. He is fluent in French and Italian and reads German. He joined the company as a sales representative, was promoted to sales manager in January 1992 and to vice president of sales in March 1993. Andrew is a member of the Sales Management Roundtable, the Seattle Chamber of Commerce, and the Pacific Rim Importers Association.', NULL)
INSERT [dbo].[Employees] ([EmployeeId], [LastName], [FirstName], [Title], [TitleOfCourtesy], [BirthDate], [HireDate], [Address], [City], [Region], [PostalCode], [Country], [HomePhone], [Extension], [Notes], [ReportsTo]) VALUES (3, N'Leverling', N'Janet', N'Sales Representative', N'Ms.', CAST(0x00005AD300000000 AS DateTime), CAST(0x0000839D00000000 AS DateTime), N'722 Moss Bay Blvd.', N'Kirkland', N'WA', N'98033', N'USA', N'(206) 555-3412', N'3355', N'Janet has a BS degree in chemistry from Boston College (1984). She has also completed a certificate program in food retailing management. Janet was hired as a sales associate in 1991 and promoted to sales representative in February 1992.', NULL)
INSERT [dbo].[Employees] ([EmployeeId], [LastName], [FirstName], [Title], [TitleOfCourtesy], [BirthDate], [HireDate], [Address], [City], [Region], [PostalCode], [Country], [HomePhone], [Extension], [Notes], [ReportsTo]) VALUES (4, N'Peacock', N'Margaret', N'Sales Representative', N'Mrs.', CAST(0x000035CF00000000 AS DateTime), CAST(0x0000852A00000000 AS DateTime), N'4110 Old Redmond Rd.', N'Redmond', N'WA', N'98052', N'USA', N'(206) 555-8122', N'5176', N'Margaret holds a BA in English literature from Concordia College (1958) and an MA from the American Institute of Culinary Arts (1966). She was assigned to the London office temporarily from July through November 1992.', NULL)
INSERT [dbo].[Employees] ([EmployeeId], [LastName], [FirstName], [Title], [TitleOfCourtesy], [BirthDate], [HireDate], [Address], [City], [Region], [PostalCode], [Country], [HomePhone], [Extension], [Notes], [ReportsTo]) VALUES (5, N'Buchanan', N'Steven', N'Sales Manager', N'Mr.', CAST(0x00004EB600000000 AS DateTime), CAST(0x000085D100000000 AS DateTime), N'14 Garrett Hill', N'London', N'', N'SW1 8JR', N'UK', N'(71) 555-4848', N'3453', N'Steven Buchanan graduated from St. Andrews University, Scotland, with a BSC degree in 1976. Upon joining the company as a sales representative in 1992, he spent 6 months in an orientation program at the Seattle office and then returned to his permanent post in London. He was promoted to sales manager in March 1993. Mr. Buchanan has completed the courses ''Successful Telemarketing'' and ''International Sales Management.'' He is fluent in French.', NULL)
INSERT [dbo].[Employees] ([EmployeeId], [LastName], [FirstName], [Title], [TitleOfCourtesy], [BirthDate], [HireDate], [Address], [City], [Region], [PostalCode], [Country], [HomePhone], [Extension], [Notes], [ReportsTo]) VALUES (6, N'Suyama', N'Michael', N'Sales Representative', N'Mr.', CAST(0x00005A9800000000 AS DateTime), CAST(0x000085D100000000 AS DateTime), N'Coventry HouseMiner Rd.', N'London', N'', N'EC2 7JR', N'UK', N'(71) 555-7773', N'428', N'Michael is a graduate of Sussex University (MA, economics, 1983) and the University of California at Los Angeles (MBA, marketing, 1986). He has also taken the courses ''Multi-Cultural Selling'' and ''Time Management for the Sales Professional.'' He is fluent in Japanese and can read and write French, Portuguese, and Spanish.', NULL)
INSERT [dbo].[Employees] ([EmployeeId], [LastName], [FirstName], [Title], [TitleOfCourtesy], [BirthDate], [HireDate], [Address], [City], [Region], [PostalCode], [Country], [HomePhone], [Extension], [Notes], [ReportsTo]) VALUES (7, N'King', N'Robert', N'Sales Representative', N'Mr.', CAST(0x0000562F00000000 AS DateTime), CAST(0x0000861E00000000 AS DateTime), N'Edgeham HollowWinchester Way', N'London', N'', N'RG1 9SP', N'UK', N'(71) 555-5598', N'465', N'Robert King served in the Peace Corps and traveled extensively before completing his degree in English at the University of Michigan in 1992, the year he joined the company. After completing a course entitled ''Selling in Europe,'' he was transferred to the London office in March 1993.', NULL)
INSERT [dbo].[Employees] ([EmployeeId], [LastName], [FirstName], [Title], [TitleOfCourtesy], [BirthDate], [HireDate], [Address], [City], [Region], [PostalCode], [Country], [HomePhone], [Extension], [Notes], [ReportsTo]) VALUES (8, N'Callahan', N'Laura', N'Inside Sales Coordinator', N'Ms.', CAST(0x000052C800000000 AS DateTime), CAST(0x0000865C00000000 AS DateTime), N'4726 - 11th Ave. N.E.', N'Seattle', N'WA', N'98105', N'USA', N'(206) 555-1189', N'2344', N'Laura received a BA in psychology from the University of Washington. She has also completed a course in business French. She reads and writes French.', NULL)
INSERT [dbo].[Employees] ([EmployeeId], [LastName], [FirstName], [Title], [TitleOfCourtesy], [BirthDate], [HireDate], [Address], [City], [Region], [PostalCode], [Country], [HomePhone], [Extension], [Notes], [ReportsTo]) VALUES (9, N'Dodsworth', N'Anne', N'Sales Representative', N'Ms.', CAST(0x00005E4400000000 AS DateTime), CAST(0x0000875B00000000 AS DateTime), N'7 Houndstooth Rd.', N'London', N'', N'WG2 7LT', N'UK', N'(71) 555-4444', N'452', N'Anne has a BA degree in English from St. Lawrence College. She is fluent in French and German.', NULL)
/****** Object: Table [dbo].[Timesheets] Script Date: 06/17/2010 13:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Timesheets](
[TimesheetId] [int] IDENTITY(1,1) NOT NULL,
[SubmittedDate] [datetime] NULL,
[Submitted] [bit] NULL,
PRIMARY KEY CLUSTERED
(
[TimesheetId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET IDENTITY_INSERT [dbo].[Timesheets] ON
INSERT [dbo].[Timesheets] ([TimesheetId], [SubmittedDate], [Submitted]) VALUES (1, CAST(0x00009D9800000000 AS DateTime), 1)
INSERT [dbo].[Timesheets] ([TimesheetId], [SubmittedDate], [Submitted]) VALUES (2, CAST(0x00009D9700000000 AS DateTime), 0)
INSERT [dbo].[Timesheets] ([TimesheetId], [SubmittedDate], [Submitted]) VALUES (3, CAST(0x00009D990110B41C AS DateTime), 1)
SET IDENTITY_INSERT [dbo].[Timesheets] OFF
/****** Object: Table [dbo].[TimesheetEntries] Script Date: 06/17/2010 13:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[TimesheetEntries](
[TimesheetEntryId] [int] IDENTITY(1,1) NOT NULL,
[EntryDate] [datetime] NULL,
[NumberOfHours] [int] NULL,
[Comments] [nvarchar](255) NULL,
[TimesheetID] [int] NULL,
PRIMARY KEY CLUSTERED
(
[TimesheetEntryId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET IDENTITY_INSERT [dbo].[TimesheetEntries] ON
INSERT [dbo].[TimesheetEntries] ([TimesheetEntryId], [EntryDate], [NumberOfHours], [Comments], [TimesheetID]) VALUES (1, CAST(0x00009D9800000000 AS DateTime), 6, N'testing 123', 2)
INSERT [dbo].[TimesheetEntries] ([TimesheetEntryId], [EntryDate], [NumberOfHours], [Comments], [TimesheetID]) VALUES (2, CAST(0x00009D9900000000 AS DateTime), 14, NULL, 2)
INSERT [dbo].[TimesheetEntries] ([TimesheetEntryId], [EntryDate], [NumberOfHours], [Comments], [TimesheetID]) VALUES (3, CAST(0x00009D980116325C AS DateTime), 4, NULL, 3)
INSERT [dbo].[TimesheetEntries] ([TimesheetEntryId], [EntryDate], [NumberOfHours], [Comments], [TimesheetID]) VALUES (4, CAST(0x00009D980113733C AS DateTime), 8, N'testing 456', 3)
INSERT [dbo].[TimesheetEntries] ([TimesheetEntryId], [EntryDate], [NumberOfHours], [Comments], [TimesheetID]) VALUES (5, CAST(0x00009D980114462C AS DateTime), 7, NULL, 3)
INSERT [dbo].[TimesheetEntries] ([TimesheetEntryId], [EntryDate], [NumberOfHours], [Comments], [TimesheetID]) VALUES (6, CAST(0x00009D98011D102C AS DateTime), 38, NULL, 3)
SET IDENTITY_INSERT [dbo].[TimesheetEntries] OFF
/****** Object: Table [dbo].[Territories] Script Date: 06/17/2010 13:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Territories](
[TerritoryId] [bigint] IDENTITY(1,1) NOT NULL,
[TerritoryDescription] [nvarchar](50) NOT NULL,
[RegionId] [bigint] NOT NULL,
PRIMARY KEY CLUSTERED
(
[TerritoryId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Orders] Script Date: 06/17/2010 13:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Orders](
[OrderId] [int] NOT NULL,
[CustomerId] [nvarchar](255) NOT NULL,
[EmployeeId] [int] NULL,
[OrderDate] [datetime] NULL,
[RequiredDate] [datetime] NULL,
[ShippedDate] [datetime] NULL,
[ShipVia] [int] NULL,
[Freight] [decimal](19, 5) NULL,
[ShipName] [nvarchar](40) NULL,
[ShipAddress] [nvarchar](60) NULL,
[ShipCity] [nvarchar](15) NULL,
[ShipRegion] [nvarchar](15) NULL,
[ShipPostalCode] [nvarchar](10) NULL,
[ShipCountry] [nvarchar](15) NULL,
PRIMARY KEY CLUSTERED
(
[OrderId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10248, N'VINET', 5, CAST(0x000089B000000000 AS DateTime), CAST(0x000089CC00000000 AS DateTime), CAST(0x000089BC00000000 AS DateTime), 3, CAST(32.38000 AS Decimal(19, 5)), N'Vins et alcools Chevalier', N'59 rue de l''Abbaye', N'Reims', N'null', N'51100', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10249, N'TOMSP', 6, CAST(0x000089B100000000 AS DateTime), CAST(0x000089DB00000000 AS DateTime), CAST(0x000089B600000000 AS DateTime), 1, CAST(11.61000 AS Decimal(19, 5)), N'Toms Spezialitäten', N'Luisenstr. 48', N'Münster', N'null', N'44087', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10250, N'HANAR', 4, CAST(0x000089B400000000 AS DateTime), CAST(0x000089D000000000 AS DateTime), CAST(0x000089B800000000 AS DateTime), 2, CAST(65.83000 AS Decimal(19, 5)), N'Hanari Carnes', N'Rua do Paço, 67', N'Rio de Janeiro', N'RJ', N'05454-876', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10251, N'VICTE', 3, CAST(0x000089B400000000 AS DateTime), CAST(0x000089D000000000 AS DateTime), CAST(0x000089BB00000000 AS DateTime), 1, CAST(41.34000 AS Decimal(19, 5)), N'Victuailles en stock', N'2, rue du Commerce', N'Lyon', N'null', N'69004', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10252, N'SUPRD', 4, CAST(0x000089B500000000 AS DateTime), CAST(0x000089D100000000 AS DateTime), CAST(0x000089B700000000 AS DateTime), 2, CAST(51.30000 AS Decimal(19, 5)), N'Suprêmes délices', N'Boulevard Tirou, 255', N'Charleroi', N'null', N'B-6000', N'Belgium')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10253, N'HANAR', 3, CAST(0x000089B600000000 AS DateTime), CAST(0x000089C400000000 AS DateTime), CAST(0x000089BC00000000 AS DateTime), 2, CAST(58.17000 AS Decimal(19, 5)), N'Hanari Carnes', N'Rua do Paço, 67', N'Rio de Janeiro', N'RJ', N'05454-876', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10254, N'CHOPS', 5, CAST(0x000089B700000000 AS DateTime), CAST(0x000089D300000000 AS DateTime), CAST(0x000089C300000000 AS DateTime), 2, CAST(22.98000 AS Decimal(19, 5)), N'Chop-suey Chinese', N'Hauptstr. 31', N'Bern', N'null', N'3012', N'Switzerland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10255, N'RICSU', 9, CAST(0x000089B800000000 AS DateTime), CAST(0x000089D400000000 AS DateTime), CAST(0x000089BB00000000 AS DateTime), 3, CAST(148.33000 AS Decimal(19, 5)), N'Richter Supermarkt', N'Starenweg 5', N'Genève', N'null', N'1204', N'Switzerland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10256, N'WELLI', 3, CAST(0x000089BB00000000 AS DateTime), CAST(0x000089D700000000 AS DateTime), CAST(0x000089BD00000000 AS DateTime), 2, CAST(13.97000 AS Decimal(19, 5)), N'Wellington Importadora', N'Rua do Mercado, 12', N'Resende', N'SP', N'08737-363', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10257, N'HILAA', 4, CAST(0x000089BC00000000 AS DateTime), CAST(0x000089D800000000 AS DateTime), CAST(0x000089C200000000 AS DateTime), 3, CAST(81.91000 AS Decimal(19, 5)), N'HILARION-Abastos', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10258, N'ERNSH', 1, CAST(0x000089BD00000000 AS DateTime), CAST(0x000089D900000000 AS DateTime), CAST(0x000089C300000000 AS DateTime), 1, CAST(140.51000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10259, N'CENTC', 4, CAST(0x000089BE00000000 AS DateTime), CAST(0x000089DA00000000 AS DateTime), CAST(0x000089C500000000 AS DateTime), 3, CAST(3.25000 AS Decimal(19, 5)), N'Centro comercial Moctezuma', N'Sierras de Granada 9993', N'México D.F.', N'null', N'05022', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10260, N'OTTIK', 4, CAST(0x000089BF00000000 AS DateTime), CAST(0x000089DB00000000 AS DateTime), CAST(0x000089C900000000 AS DateTime), 1, CAST(55.09000 AS Decimal(19, 5)), N'Ottilies Käseladen', N'Mehrheimerstr. 369', N'Köln', N'null', N'50739', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10261, N'QUEDE', 4, CAST(0x000089BF00000000 AS DateTime), CAST(0x000089DB00000000 AS DateTime), CAST(0x000089CA00000000 AS DateTime), 2, CAST(3.05000 AS Decimal(19, 5)), N'Que Delícia', N'Rua da Panificadora, 12', N'Rio de Janeiro', N'RJ', N'02389-673', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10262, N'RATTC', 8, CAST(0x000089C200000000 AS DateTime), CAST(0x000089DE00000000 AS DateTime), CAST(0x000089C500000000 AS DateTime), 3, CAST(48.29000 AS Decimal(19, 5)), N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10263, N'ERNSH', 9, CAST(0x000089C300000000 AS DateTime), CAST(0x000089DF00000000 AS DateTime), CAST(0x000089CB00000000 AS DateTime), 3, CAST(146.06000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10264, N'FOLKO', 6, CAST(0x000089C400000000 AS DateTime), CAST(0x000089E000000000 AS DateTime), CAST(0x000089E200000000 AS DateTime), 3, CAST(3.67000 AS Decimal(19, 5)), N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', N'null', N'S-844 67', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10265, N'BLONP', 2, CAST(0x000089C500000000 AS DateTime), CAST(0x000089E100000000 AS DateTime), CAST(0x000089D700000000 AS DateTime), 1, CAST(55.28000 AS Decimal(19, 5)), N'Blondel père et fils', N'24, place Kléber', N'Strasbourg', N'null', N'67000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10266, N'WARTH', 3, CAST(0x000089C600000000 AS DateTime), CAST(0x000089F000000000 AS DateTime), CAST(0x000089CB00000000 AS DateTime), 3, CAST(25.73000 AS Decimal(19, 5)), N'Wartian Herkku', N'Torikatu 38', N'Oulu', N'null', N'90110', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10267, N'FRANK', 4, CAST(0x000089C900000000 AS DateTime), CAST(0x000089E500000000 AS DateTime), CAST(0x000089D100000000 AS DateTime), 1, CAST(208.58000 AS Decimal(19, 5)), N'Frankenversand', N'Berliner Platz 43', N'München', N'null', N'80805', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10268, N'GROSR', 8, CAST(0x000089CA00000000 AS DateTime), CAST(0x000089E600000000 AS DateTime), CAST(0x000089CD00000000 AS DateTime), 3, CAST(66.29000 AS Decimal(19, 5)), N'GROSELLA-Restaurante', N'5ª Ave. Los Palos Grandes', N'Caracas', N'DF', N'1081', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10269, N'WHITC', 5, CAST(0x000089CB00000000 AS DateTime), CAST(0x000089D900000000 AS DateTime), CAST(0x000089D400000000 AS DateTime), 1, CAST(4.56000 AS Decimal(19, 5)), N'White Clover Markets', N'1029 - 12th Ave. S.', N'Seattle', N'WA', N'98124', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10270, N'WARTH', 1, CAST(0x000089CC00000000 AS DateTime), CAST(0x000089E800000000 AS DateTime), CAST(0x000089CD00000000 AS DateTime), 1, CAST(136.54000 AS Decimal(19, 5)), N'Wartian Herkku', N'Torikatu 38', N'Oulu', N'null', N'90110', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10271, N'SPLIR', 6, CAST(0x000089CC00000000 AS DateTime), CAST(0x000089E800000000 AS DateTime), CAST(0x000089E900000000 AS DateTime), 2, CAST(4.54000 AS Decimal(19, 5)), N'Split Rail Beer & Ale', N'P.O. Box 555', N'Lander', N'WY', N'82520', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10272, N'RATTC', 6, CAST(0x000089CD00000000 AS DateTime), CAST(0x000089E900000000 AS DateTime), CAST(0x000089D100000000 AS DateTime), 2, CAST(98.03000 AS Decimal(19, 5)), N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10273, N'QUICK', 3, CAST(0x000089D000000000 AS DateTime), CAST(0x000089EC00000000 AS DateTime), CAST(0x000089D700000000 AS DateTime), 3, CAST(76.07000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10274, N'VINET', 6, CAST(0x000089D100000000 AS DateTime), CAST(0x000089ED00000000 AS DateTime), CAST(0x000089DB00000000 AS DateTime), 1, CAST(6.01000 AS Decimal(19, 5)), N'Vins et alcools Chevalier', N'59 rue de l''Abbaye', N'Reims', N'null', N'51100', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10275, N'MAGAA', 1, CAST(0x000089D200000000 AS DateTime), CAST(0x000089EE00000000 AS DateTime), CAST(0x000089D400000000 AS DateTime), 1, CAST(26.93000 AS Decimal(19, 5)), N'Magazzini Alimentari Riuniti', N'Via Ludovico il Moro 22', N'Bergamo', N'null', N'24100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10276, N'TORTU', 8, CAST(0x000089D300000000 AS DateTime), CAST(0x000089E100000000 AS DateTime), CAST(0x000089D900000000 AS DateTime), 3, CAST(13.84000 AS Decimal(19, 5)), N'Tortuga Restaurante', N'Avda. Azteca 123', N'México D.F.', N'null', N'05033', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10277, N'MORGK', 2, CAST(0x000089D400000000 AS DateTime), CAST(0x000089F000000000 AS DateTime), CAST(0x000089D800000000 AS DateTime), 3, CAST(125.77000 AS Decimal(19, 5)), N'Morgenstern Gesundkost', N'Heerstr. 22', N'Leipzig', N'null', N'04179', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10278, N'BERGS', 8, CAST(0x000089D700000000 AS DateTime), CAST(0x000089F300000000 AS DateTime), CAST(0x000089DB00000000 AS DateTime), 2, CAST(92.69000 AS Decimal(19, 5)), N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', N'null', N'S-958 22', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10279, N'LEHMS', 8, CAST(0x000089D800000000 AS DateTime), CAST(0x000089F400000000 AS DateTime), CAST(0x000089DB00000000 AS DateTime), 2, CAST(25.83000 AS Decimal(19, 5)), N'Lehmanns Marktstand', N'Magazinweg 7', N'Frankfurt a.M.', N'null', N'60528', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10280, N'BERGS', 2, CAST(0x000089D900000000 AS DateTime), CAST(0x000089F500000000 AS DateTime), CAST(0x000089F600000000 AS DateTime), 1, CAST(8.98000 AS Decimal(19, 5)), N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', N'null', N'S-958 22', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10281, N'ROMEY', 4, CAST(0x000089D900000000 AS DateTime), CAST(0x000089E700000000 AS DateTime), CAST(0x000089E000000000 AS DateTime), 1, CAST(2.94000 AS Decimal(19, 5)), N'Romero y tomillo', N'Gran Vía, 1', N'Madrid', N'null', N'28001', N'Spain')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10282, N'ROMEY', 4, CAST(0x000089DA00000000 AS DateTime), CAST(0x000089F600000000 AS DateTime), CAST(0x000089E000000000 AS DateTime), 1, CAST(12.69000 AS Decimal(19, 5)), N'Romero y tomillo', N'Gran Vía, 1', N'Madrid', N'null', N'28001', N'Spain')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10283, N'LILAS', 3, CAST(0x000089DB00000000 AS DateTime), CAST(0x000089F700000000 AS DateTime), CAST(0x000089E200000000 AS DateTime), 3, CAST(84.81000 AS Decimal(19, 5)), N'LILA-Supermercado', N'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', N'Barquisimeto', N'Lara', N'3508', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10284, N'LEHMS', 4, CAST(0x000089DE00000000 AS DateTime), CAST(0x000089FA00000000 AS DateTime), CAST(0x000089E600000000 AS DateTime), 1, CAST(76.56000 AS Decimal(19, 5)), N'Lehmanns Marktstand', N'Magazinweg 7', N'Frankfurt a.M.', N'null', N'60528', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10285, N'QUICK', 1, CAST(0x000089DF00000000 AS DateTime), CAST(0x000089FB00000000 AS DateTime), CAST(0x000089E500000000 AS DateTime), 2, CAST(76.83000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10286, N'QUICK', 8, CAST(0x000089E000000000 AS DateTime), CAST(0x000089FC00000000 AS DateTime), CAST(0x000089E900000000 AS DateTime), 3, CAST(229.24000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10287, N'RICAR', 8, CAST(0x000089E100000000 AS DateTime), CAST(0x000089FD00000000 AS DateTime), CAST(0x000089E700000000 AS DateTime), 3, CAST(12.76000 AS Decimal(19, 5)), N'Ricardo Adocicados', N'Av. Copacabana, 267', N'Rio de Janeiro', N'RJ', N'02389-890', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10288, N'REGGC', 4, CAST(0x000089E200000000 AS DateTime), CAST(0x000089FE00000000 AS DateTime), CAST(0x000089ED00000000 AS DateTime), 1, CAST(7.45000 AS Decimal(19, 5)), N'Reggiani Caseifici', N'Strada Provinciale 124', N'Reggio Emilia', N'null', N'42100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10289, N'BSBEV', 7, CAST(0x000089E500000000 AS DateTime), CAST(0x00008A0100000000 AS DateTime), CAST(0x000089E700000000 AS DateTime), 3, CAST(22.77000 AS Decimal(19, 5)), N'B''s Beverages', N'Fauntleroy Circus', N'London', N'null', N'EC2 5NT', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10290, N'COMMI', 8, CAST(0x000089E600000000 AS DateTime), CAST(0x00008A0200000000 AS DateTime), CAST(0x000089ED00000000 AS DateTime), 1, CAST(79.70000 AS Decimal(19, 5)), N'Comércio Mineiro', N'Av. dos Lusíadas, 23', N'Sao Paulo', N'SP', N'05432-043', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10291, N'QUEDE', 6, CAST(0x000089E600000000 AS DateTime), CAST(0x00008A0200000000 AS DateTime), CAST(0x000089EE00000000 AS DateTime), 2, CAST(6.40000 AS Decimal(19, 5)), N'Que Delícia', N'Rua da Panificadora, 12', N'Rio de Janeiro', N'RJ', N'02389-673', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10292, N'TRADH', 1, CAST(0x000089E700000000 AS DateTime), CAST(0x00008A0300000000 AS DateTime), CAST(0x000089EC00000000 AS DateTime), 2, CAST(1.35000 AS Decimal(19, 5)), N'Tradiçao Hipermercados', N'Av. Inês de Castro, 414', N'Sao Paulo', N'SP', N'05634-030', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10293, N'TORTU', 1, CAST(0x000089E800000000 AS DateTime), CAST(0x00008A0400000000 AS DateTime), CAST(0x000089F500000000 AS DateTime), 3, CAST(21.18000 AS Decimal(19, 5)), N'Tortuga Restaurante', N'Avda. Azteca 123', N'México D.F.', N'null', N'05033', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10294, N'RATTC', 4, CAST(0x000089E900000000 AS DateTime), CAST(0x00008A0500000000 AS DateTime), CAST(0x000089EF00000000 AS DateTime), 2, CAST(147.26000 AS Decimal(19, 5)), N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10295, N'VINET', 2, CAST(0x000089EC00000000 AS DateTime), CAST(0x00008A0800000000 AS DateTime), CAST(0x000089F400000000 AS DateTime), 2, CAST(1.15000 AS Decimal(19, 5)), N'Vins et alcools Chevalier', N'59 rue de l''Abbaye', N'Reims', N'null', N'51100', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10296, N'LILAS', 6, CAST(0x000089ED00000000 AS DateTime), CAST(0x00008A0900000000 AS DateTime), CAST(0x000089F500000000 AS DateTime), 1, CAST(0.12000 AS Decimal(19, 5)), N'LILA-Supermercado', N'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', N'Barquisimeto', N'Lara', N'3508', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10297, N'BLONP', 5, CAST(0x000089EE00000000 AS DateTime), CAST(0x00008A1800000000 AS DateTime), CAST(0x000089F400000000 AS DateTime), 2, CAST(5.74000 AS Decimal(19, 5)), N'Blondel père et fils', N'24, place Kléber', N'Strasbourg', N'null', N'67000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10298, N'HUNGO', 6, CAST(0x000089EF00000000 AS DateTime), CAST(0x00008A0B00000000 AS DateTime), CAST(0x000089F500000000 AS DateTime), 2, CAST(168.22000 AS Decimal(19, 5)), N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', N'null', N'Ireland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10299, N'RICAR', 4, CAST(0x000089F000000000 AS DateTime), CAST(0x00008A0C00000000 AS DateTime), CAST(0x000089F700000000 AS DateTime), 2, CAST(29.76000 AS Decimal(19, 5)), N'Ricardo Adocicados', N'Av. Copacabana, 267', N'Rio de Janeiro', N'RJ', N'02389-890', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10300, N'MAGAA', 2, CAST(0x000089F300000000 AS DateTime), CAST(0x00008A0F00000000 AS DateTime), CAST(0x000089FC00000000 AS DateTime), 2, CAST(17.68000 AS Decimal(19, 5)), N'Magazzini Alimentari Riuniti', N'Via Ludovico il Moro 22', N'Bergamo', N'null', N'24100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10301, N'WANDK', 8, CAST(0x000089F300000000 AS DateTime), CAST(0x00008A0F00000000 AS DateTime), CAST(0x000089FB00000000 AS DateTime), 2, CAST(45.08000 AS Decimal(19, 5)), N'Die Wandernde Kuh', N'Adenauerallee 900', N'Stuttgart', N'null', N'70563', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10302, N'SUPRD', 4, CAST(0x000089F400000000 AS DateTime), CAST(0x00008A1000000000 AS DateTime), CAST(0x00008A1100000000 AS DateTime), 2, CAST(6.27000 AS Decimal(19, 5)), N'Suprêmes délices', N'Boulevard Tirou, 255', N'Charleroi', N'null', N'B-6000', N'Belgium')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10303, N'GODOS', 7, CAST(0x000089F500000000 AS DateTime), CAST(0x00008A1100000000 AS DateTime), CAST(0x000089FC00000000 AS DateTime), 2, CAST(107.83000 AS Decimal(19, 5)), N'Godos Cocina Típica', N'C/ Romero, 33', N'Sevilla', N'null', N'41101', N'Spain')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10304, N'TORTU', 1, CAST(0x000089F600000000 AS DateTime), CAST(0x00008A1200000000 AS DateTime), CAST(0x000089FB00000000 AS DateTime), 2, CAST(63.79000 AS Decimal(19, 5)), N'Tortuga Restaurante', N'Avda. Azteca 123', N'México D.F.', N'null', N'05033', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10305, N'OLDWO', 8, CAST(0x000089F700000000 AS DateTime), CAST(0x00008A1300000000 AS DateTime), CAST(0x00008A1100000000 AS DateTime), 3, CAST(257.62000 AS Decimal(19, 5)), N'Old World Delicatessen', N'2743 Bering St.', N'Anchorage', N'AK', N'99508', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10306, N'ROMEY', 1, CAST(0x000089FA00000000 AS DateTime), CAST(0x00008A1600000000 AS DateTime), CAST(0x00008A0100000000 AS DateTime), 3, CAST(7.56000 AS Decimal(19, 5)), N'Romero y tomillo', N'Gran Vía, 1', N'Madrid', N'null', N'28001', N'Spain')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10307, N'LONEP', 2, CAST(0x000089FB00000000 AS DateTime), CAST(0x00008A1700000000 AS DateTime), CAST(0x00008A0300000000 AS DateTime), 2, CAST(0.56000 AS Decimal(19, 5)), N'Lonesome Pine Restaurant', N'89 Chiaroscuro Rd.', N'Portland', N'OR', N'97219', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10308, N'ANATR', 7, CAST(0x000089FC00000000 AS DateTime), CAST(0x00008A1800000000 AS DateTime), CAST(0x00008A0200000000 AS DateTime), 3, CAST(1.61000 AS Decimal(19, 5)), N'Ana Trujillo Emparedados y helados', N'Avda. de la Constitución 2222', N'México D.F.', N'null', N'05021', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10309, N'HUNGO', 3, CAST(0x000089FD00000000 AS DateTime), CAST(0x00008A1900000000 AS DateTime), CAST(0x00008A1F00000000 AS DateTime), 1, CAST(47.30000 AS Decimal(19, 5)), N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', N'null', N'Ireland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10310, N'THEBI', 8, CAST(0x000089FE00000000 AS DateTime), CAST(0x00008A1A00000000 AS DateTime), CAST(0x00008A0500000000 AS DateTime), 2, CAST(17.52000 AS Decimal(19, 5)), N'The Big Cheese', N'89 Jefferson Way Suite 2', N'Portland', N'OR', N'97201', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10311, N'DUMON', 1, CAST(0x000089FE00000000 AS DateTime), CAST(0x00008A0C00000000 AS DateTime), CAST(0x00008A0400000000 AS DateTime), 3, CAST(24.69000 AS Decimal(19, 5)), N'Du monde entier', N'67, rue des Cinquante Otages', N'Nantes', N'null', N'44000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10312, N'WANDK', 2, CAST(0x00008A0100000000 AS DateTime), CAST(0x00008A1D00000000 AS DateTime), CAST(0x00008A0B00000000 AS DateTime), 2, CAST(40.26000 AS Decimal(19, 5)), N'Die Wandernde Kuh', N'Adenauerallee 900', N'Stuttgart', N'null', N'70563', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10313, N'QUICK', 2, CAST(0x00008A0200000000 AS DateTime), CAST(0x00008A1E00000000 AS DateTime), CAST(0x00008A0C00000000 AS DateTime), 2, CAST(1.96000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10314, N'RATTC', 1, CAST(0x00008A0300000000 AS DateTime), CAST(0x00008A1F00000000 AS DateTime), CAST(0x00008A0C00000000 AS DateTime), 2, CAST(74.16000 AS Decimal(19, 5)), N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10315, N'ISLAT', 4, CAST(0x00008A0400000000 AS DateTime), CAST(0x00008A2000000000 AS DateTime), CAST(0x00008A0B00000000 AS DateTime), 2, CAST(41.76000 AS Decimal(19, 5)), N'Island Trading', N'Garden House Crowther Way', N'Cowes', N'Isle of Wight', N'PO31 7PJ', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10316, N'RATTC', 1, CAST(0x00008A0500000000 AS DateTime), CAST(0x00008A2100000000 AS DateTime), CAST(0x00008A1000000000 AS DateTime), 3, CAST(150.15000 AS Decimal(19, 5)), N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10317, N'LONEP', 6, CAST(0x00008A0800000000 AS DateTime), CAST(0x00008A2400000000 AS DateTime), CAST(0x00008A1200000000 AS DateTime), 1, CAST(12.69000 AS Decimal(19, 5)), N'Lonesome Pine Restaurant', N'89 Chiaroscuro Rd.', N'Portland', N'OR', N'97219', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10318, N'ISLAT', 8, CAST(0x00008A0900000000 AS DateTime), CAST(0x00008A2500000000 AS DateTime), CAST(0x00008A0C00000000 AS DateTime), 2, CAST(4.73000 AS Decimal(19, 5)), N'Island Trading', N'Garden House Crowther Way', N'Cowes', N'Isle of Wight', N'PO31 7PJ', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10319, N'TORTU', 7, CAST(0x00008A0A00000000 AS DateTime), CAST(0x00008A2600000000 AS DateTime), CAST(0x00008A1300000000 AS DateTime), 3, CAST(64.50000 AS Decimal(19, 5)), N'Tortuga Restaurante', N'Avda. Azteca 123', N'México D.F.', N'null', N'05033', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10320, N'WARTH', 5, CAST(0x00008A0B00000000 AS DateTime), CAST(0x00008A1900000000 AS DateTime), CAST(0x00008A1A00000000 AS DateTime), 3, CAST(34.57000 AS Decimal(19, 5)), N'Wartian Herkku', N'Torikatu 38', N'Oulu', N'null', N'90110', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10321, N'ISLAT', 3, CAST(0x00008A0B00000000 AS DateTime), CAST(0x00008A2700000000 AS DateTime), CAST(0x00008A1300000000 AS DateTime), 2, CAST(3.43000 AS Decimal(19, 5)), N'Island Trading', N'Garden House Crowther Way', N'Cowes', N'Isle of Wight', N'PO31 7PJ', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10322, N'PERIC', 7, CAST(0x00008A0C00000000 AS DateTime), CAST(0x00008A2800000000 AS DateTime), CAST(0x00008A1F00000000 AS DateTime), 3, CAST(0.40000 AS Decimal(19, 5)), N'Pericles Comidas clásicas', N'Calle Dr. Jorge Cash 321', N'México D.F.', N'null', N'05033', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10323, N'KOENE', 4, CAST(0x00008A0F00000000 AS DateTime), CAST(0x00008A2B00000000 AS DateTime), CAST(0x00008A1600000000 AS DateTime), 1, CAST(4.88000 AS Decimal(19, 5)), N'Königlich Essen', N'Maubelstr. 90', N'Brandenburg', N'null', N'14776', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10324, N'SAVEA', 9, CAST(0x00008A1000000000 AS DateTime), CAST(0x00008A2C00000000 AS DateTime), CAST(0x00008A1200000000 AS DateTime), 1, CAST(214.27000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10325, N'KOENE', 1, CAST(0x00008A1100000000 AS DateTime), CAST(0x00008A1F00000000 AS DateTime), CAST(0x00008A1600000000 AS DateTime), 3, CAST(64.86000 AS Decimal(19, 5)), N'Königlich Essen', N'Maubelstr. 90', N'Brandenburg', N'null', N'14776', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10326, N'BOLID', 4, CAST(0x00008A1200000000 AS DateTime), CAST(0x00008A2E00000000 AS DateTime), CAST(0x00008A1600000000 AS DateTime), 2, CAST(77.92000 AS Decimal(19, 5)), N'Bólido Comidas preparadas', N'C/ Araquil, 67', N'Madrid', N'null', N'28023', N'Spain')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10327, N'FOLKO', 2, CAST(0x00008A1300000000 AS DateTime), CAST(0x00008A2F00000000 AS DateTime), CAST(0x00008A1600000000 AS DateTime), 1, CAST(63.36000 AS Decimal(19, 5)), N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', N'null', N'S-844 67', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10328, N'FURIB', 4, CAST(0x00008A1600000000 AS DateTime), CAST(0x00008A3200000000 AS DateTime), CAST(0x00008A1900000000 AS DateTime), 3, CAST(87.03000 AS Decimal(19, 5)), N'Furia Bacalhau e Frutos do Mar', N'Jardim das rosas n. 32', N'Lisboa', N'null', N'1675', N'Portugal')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10329, N'SPLIR', 4, CAST(0x00008A1700000000 AS DateTime), CAST(0x00008A4100000000 AS DateTime), CAST(0x00008A1F00000000 AS DateTime), 2, CAST(191.67000 AS Decimal(19, 5)), N'Split Rail Beer & Ale', N'P.O. Box 555', N'Lander', N'WY', N'82520', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10330, N'LILAS', 3, CAST(0x00008A1800000000 AS DateTime), CAST(0x00008A3400000000 AS DateTime), CAST(0x00008A2400000000 AS DateTime), 1, CAST(12.75000 AS Decimal(19, 5)), N'LILA-Supermercado', N'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', N'Barquisimeto', N'Lara', N'3508', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10331, N'BONAP', 9, CAST(0x00008A1800000000 AS DateTime), CAST(0x00008A4200000000 AS DateTime), CAST(0x00008A1D00000000 AS DateTime), 1, CAST(10.19000 AS Decimal(19, 5)), N'Bon app''', N'12, rue des Bouchers', N'Marseille', N'null', N'13008', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10332, N'MEREP', 3, CAST(0x00008A1900000000 AS DateTime), CAST(0x00008A4300000000 AS DateTime), CAST(0x00008A1D00000000 AS DateTime), 2, CAST(52.84000 AS Decimal(19, 5)), N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10333, N'WARTH', 5, CAST(0x00008A1A00000000 AS DateTime), CAST(0x00008A3600000000 AS DateTime), CAST(0x00008A2100000000 AS DateTime), 3, CAST(0.59000 AS Decimal(19, 5)), N'Wartian Herkku', N'Torikatu 38', N'Oulu', N'null', N'90110', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10334, N'VICTE', 8, CAST(0x00008A1D00000000 AS DateTime), CAST(0x00008A3900000000 AS DateTime), CAST(0x00008A2400000000 AS DateTime), 2, CAST(8.56000 AS Decimal(19, 5)), N'Victuailles en stock', N'2, rue du Commerce', N'Lyon', N'null', N'69004', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10335, N'HUNGO', 7, CAST(0x00008A1E00000000 AS DateTime), CAST(0x00008A3A00000000 AS DateTime), CAST(0x00008A2000000000 AS DateTime), 2, CAST(42.11000 AS Decimal(19, 5)), N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', N'null', N'Ireland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10336, N'PRINI', 7, CAST(0x00008A1F00000000 AS DateTime), CAST(0x00008A3B00000000 AS DateTime), CAST(0x00008A2100000000 AS DateTime), 2, CAST(15.51000 AS Decimal(19, 5)), N'Princesa Isabel Vinhos', N'Estrada da saúde n. 58', N'Lisboa', N'null', N'1756', N'Portugal')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10337, N'FRANK', 4, CAST(0x00008A2000000000 AS DateTime), CAST(0x00008A3C00000000 AS DateTime), CAST(0x00008A2500000000 AS DateTime), 3, CAST(108.26000 AS Decimal(19, 5)), N'Frankenversand', N'Berliner Platz 43', N'München', N'null', N'80805', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10338, N'OLDWO', 4, CAST(0x00008A2100000000 AS DateTime), CAST(0x00008A3D00000000 AS DateTime), CAST(0x00008A2500000000 AS DateTime), 3, CAST(84.21000 AS Decimal(19, 5)), N'Old World Delicatessen', N'2743 Bering St.', N'Anchorage', N'AK', N'99508', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10339, N'MEREP', 2, CAST(0x00008A2400000000 AS DateTime), CAST(0x00008A4000000000 AS DateTime), CAST(0x00008A2B00000000 AS DateTime), 2, CAST(15.66000 AS Decimal(19, 5)), N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10340, N'BONAP', 1, CAST(0x00008A2500000000 AS DateTime), CAST(0x00008A4100000000 AS DateTime), CAST(0x00008A2F00000000 AS DateTime), 3, CAST(166.31000 AS Decimal(19, 5)), N'Bon app''', N'12, rue des Bouchers', N'Marseille', N'null', N'13008', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10341, N'SIMOB', 7, CAST(0x00008A2500000000 AS DateTime), CAST(0x00008A4100000000 AS DateTime), CAST(0x00008A2C00000000 AS DateTime), 3, CAST(26.78000 AS Decimal(19, 5)), N'Simons bistro', N'Vinbæltet 34', N'Kobenhavn', N'null', N'1734', N'Denmark')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10342, N'FRANK', 4, CAST(0x00008A2600000000 AS DateTime), CAST(0x00008A3400000000 AS DateTime), CAST(0x00008A2B00000000 AS DateTime), 2, CAST(54.83000 AS Decimal(19, 5)), N'Frankenversand', N'Berliner Platz 43', N'München', N'null', N'80805', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10343, N'LEHMS', 4, CAST(0x00008A2700000000 AS DateTime), CAST(0x00008A4300000000 AS DateTime), CAST(0x00008A2D00000000 AS DateTime), 1, CAST(110.37000 AS Decimal(19, 5)), N'Lehmanns Marktstand', N'Magazinweg 7', N'Frankfurt a.M.', N'null', N'60528', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10344, N'WHITC', 4, CAST(0x00008A2800000000 AS DateTime), CAST(0x00008A4400000000 AS DateTime), CAST(0x00008A2C00000000 AS DateTime), 2, CAST(23.29000 AS Decimal(19, 5)), N'White Clover Markets', N'1029 - 12th Ave. S.', N'Seattle', N'WA', N'98124', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10345, N'QUICK', 2, CAST(0x00008A2B00000000 AS DateTime), CAST(0x00008A4700000000 AS DateTime), CAST(0x00008A3200000000 AS DateTime), 2, CAST(249.06000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10346, N'RATTC', 3, CAST(0x00008A2C00000000 AS DateTime), CAST(0x00008A5600000000 AS DateTime), CAST(0x00008A2F00000000 AS DateTime), 3, CAST(142.08000 AS Decimal(19, 5)), N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10347, N'FAMIA', 4, CAST(0x00008A2D00000000 AS DateTime), CAST(0x00008A4900000000 AS DateTime), CAST(0x00008A2F00000000 AS DateTime), 3, CAST(3.10000 AS Decimal(19, 5)), N'Familia Arquibaldo', N'Rua Orós, 92', N'Sao Paulo', N'SP', N'05442-030', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10348, N'WANDK', 4, CAST(0x00008A2E00000000 AS DateTime), CAST(0x00008A4A00000000 AS DateTime), CAST(0x00008A3600000000 AS DateTime), 2, CAST(0.78000 AS Decimal(19, 5)), N'Die Wandernde Kuh', N'Adenauerallee 900', N'Stuttgart', N'null', N'70563', N'Germany')
GO
print 'Processed 100 total records'
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10349, N'SPLIR', 7, CAST(0x00008A2F00000000 AS DateTime), CAST(0x00008A4B00000000 AS DateTime), CAST(0x00008A3600000000 AS DateTime), 1, CAST(8.63000 AS Decimal(19, 5)), N'Split Rail Beer & Ale', N'P.O. Box 555', N'Lander', N'WY', N'82520', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10350, N'LAMAI', 6, CAST(0x00008A3200000000 AS DateTime), CAST(0x00008A4E00000000 AS DateTime), CAST(0x00008A4800000000 AS DateTime), 2, CAST(64.19000 AS Decimal(19, 5)), N'La maison d''Asie', N'1 rue Alsace-Lorraine', N'Toulouse', N'null', N'31000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10351, N'ERNSH', 1, CAST(0x00008A3200000000 AS DateTime), CAST(0x00008A4E00000000 AS DateTime), CAST(0x00008A3B00000000 AS DateTime), 1, CAST(162.33000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10352, N'FURIB', 3, CAST(0x00008A3300000000 AS DateTime), CAST(0x00008A4100000000 AS DateTime), CAST(0x00008A3900000000 AS DateTime), 3, CAST(1.30000 AS Decimal(19, 5)), N'Furia Bacalhau e Frutos do Mar', N'Jardim das rosas n. 32', N'Lisboa', N'null', N'1675', N'Portugal')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10353, N'PICCO', 7, CAST(0x00008A3400000000 AS DateTime), CAST(0x00008A5000000000 AS DateTime), CAST(0x00008A4000000000 AS DateTime), 3, CAST(360.63000 AS Decimal(19, 5)), N'Piccolo und mehr', N'Geislweg 14', N'Salzburg', N'null', N'5020', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10354, N'PERIC', 8, CAST(0x00008A3500000000 AS DateTime), CAST(0x00008A5100000000 AS DateTime), CAST(0x00008A3B00000000 AS DateTime), 3, CAST(53.80000 AS Decimal(19, 5)), N'Pericles Comidas clásicas', N'Calle Dr. Jorge Cash 321', N'México D.F.', N'null', N'05033', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10355, N'AROUT', 6, CAST(0x00008A3600000000 AS DateTime), CAST(0x00008A5200000000 AS DateTime), CAST(0x00008A3B00000000 AS DateTime), 1, CAST(41.95000 AS Decimal(19, 5)), N'Around the Horn', N'Brook Farm Stratford St. Mary', N'Colchester', N'Essex', N'CO7 6JX', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10356, N'WANDK', 6, CAST(0x00008A3900000000 AS DateTime), CAST(0x00008A5500000000 AS DateTime), CAST(0x00008A4200000000 AS DateTime), 2, CAST(36.71000 AS Decimal(19, 5)), N'Die Wandernde Kuh', N'Adenauerallee 900', N'Stuttgart', N'null', N'70563', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10357, N'LILAS', 1, CAST(0x00008A3A00000000 AS DateTime), CAST(0x00008A5600000000 AS DateTime), CAST(0x00008A4700000000 AS DateTime), 3, CAST(34.88000 AS Decimal(19, 5)), N'LILA-Supermercado', N'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', N'Barquisimeto', N'Lara', N'3508', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10358, N'LAMAI', 5, CAST(0x00008A3B00000000 AS DateTime), CAST(0x00008A5700000000 AS DateTime), CAST(0x00008A4200000000 AS DateTime), 1, CAST(19.64000 AS Decimal(19, 5)), N'La maison d''Asie', N'1 rue Alsace-Lorraine', N'Toulouse', N'null', N'31000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10359, N'SEVES', 5, CAST(0x00008A3C00000000 AS DateTime), CAST(0x00008A5800000000 AS DateTime), CAST(0x00008A4100000000 AS DateTime), 3, CAST(288.43000 AS Decimal(19, 5)), N'Seven Seas Imports', N'90 Wadhurst Rd.', N'London', N'null', N'OX15 4NB', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10360, N'BLONP', 4, CAST(0x00008A3D00000000 AS DateTime), CAST(0x00008A5900000000 AS DateTime), CAST(0x00008A4700000000 AS DateTime), 3, CAST(131.70000 AS Decimal(19, 5)), N'Blondel père et fils', N'24, place Kléber', N'Strasbourg', N'null', N'67000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10361, N'QUICK', 1, CAST(0x00008A3D00000000 AS DateTime), CAST(0x00008A5900000000 AS DateTime), CAST(0x00008A4800000000 AS DateTime), 2, CAST(183.17000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10362, N'BONAP', 3, CAST(0x00008A4000000000 AS DateTime), CAST(0x00008A5C00000000 AS DateTime), CAST(0x00008A4300000000 AS DateTime), 1, CAST(96.04000 AS Decimal(19, 5)), N'Bon app''', N'12, rue des Bouchers', N'Marseille', N'null', N'13008', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10363, N'DRACD', 4, CAST(0x00008A4100000000 AS DateTime), CAST(0x00008A5D00000000 AS DateTime), CAST(0x00008A4900000000 AS DateTime), 3, CAST(30.54000 AS Decimal(19, 5)), N'Drachenblut Delikatessen', N'Walserweg 21', N'Aachen', N'null', N'52066', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10364, N'EASTC', 1, CAST(0x00008A4100000000 AS DateTime), CAST(0x00008A6B00000000 AS DateTime), CAST(0x00008A4900000000 AS DateTime), 1, CAST(71.97000 AS Decimal(19, 5)), N'Eastern Connection', N'35 King George', N'London', N'null', N'WX3 6FW', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10365, N'ANTON', 3, CAST(0x00008A4200000000 AS DateTime), CAST(0x00008A5E00000000 AS DateTime), CAST(0x00008A4700000000 AS DateTime), 2, CAST(22.00000 AS Decimal(19, 5)), N'Antonio Moreno Taquería', N'Mataderos 2312', N'México D.F.', N'null', N'05023', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10366, N'GALED', 8, CAST(0x00008A4300000000 AS DateTime), CAST(0x00008A6D00000000 AS DateTime), CAST(0x00008A6300000000 AS DateTime), 2, CAST(10.14000 AS Decimal(19, 5)), N'Galería del gastronómo', N'Rambla de Cataluña, 23', N'Barcelona', N'null', N'8022', N'Spain')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10367, N'VAFFE', 7, CAST(0x00008A4300000000 AS DateTime), CAST(0x00008A5F00000000 AS DateTime), CAST(0x00008A4700000000 AS DateTime), 3, CAST(13.55000 AS Decimal(19, 5)), N'Vaffeljernet', N'Smagsloget 45', N'Århus', N'null', N'8200', N'Denmark')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10368, N'ERNSH', 2, CAST(0x00008A4400000000 AS DateTime), CAST(0x00008A6000000000 AS DateTime), CAST(0x00008A4700000000 AS DateTime), 2, CAST(101.95000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10369, N'SPLIR', 8, CAST(0x00008A4700000000 AS DateTime), CAST(0x00008A6300000000 AS DateTime), CAST(0x00008A4E00000000 AS DateTime), 2, CAST(195.68000 AS Decimal(19, 5)), N'Split Rail Beer & Ale', N'P.O. Box 555', N'Lander', N'WY', N'82520', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10370, N'CHOPS', 6, CAST(0x00008A4800000000 AS DateTime), CAST(0x00008A6400000000 AS DateTime), CAST(0x00008A6000000000 AS DateTime), 2, CAST(1.17000 AS Decimal(19, 5)), N'Chop-suey Chinese', N'Hauptstr. 31', N'Bern', N'null', N'3012', N'Switzerland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10371, N'LAMAI', 1, CAST(0x00008A4800000000 AS DateTime), CAST(0x00008A6400000000 AS DateTime), CAST(0x00008A5D00000000 AS DateTime), 1, CAST(0.45000 AS Decimal(19, 5)), N'La maison d''Asie', N'1 rue Alsace-Lorraine', N'Toulouse', N'null', N'31000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10372, N'QUEEN', 5, CAST(0x00008A4900000000 AS DateTime), CAST(0x00008A6500000000 AS DateTime), CAST(0x00008A4E00000000 AS DateTime), 2, CAST(890.78000 AS Decimal(19, 5)), N'Queen Cozinha', N'Alameda dos Canàrios, 891', N'Sao Paulo', N'SP', N'05487-020', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10373, N'HUNGO', 4, CAST(0x00008A4A00000000 AS DateTime), CAST(0x00008A6600000000 AS DateTime), CAST(0x00008A5000000000 AS DateTime), 3, CAST(124.12000 AS Decimal(19, 5)), N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', N'null', N'Ireland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10374, N'WOLZA', 1, CAST(0x00008A4A00000000 AS DateTime), CAST(0x00008A6600000000 AS DateTime), CAST(0x00008A4E00000000 AS DateTime), 3, CAST(3.94000 AS Decimal(19, 5)), N'Wolski Zajazd', N'ul. Filtrowa 68', N'Warszawa', N'null', N'01-012', N'Poland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10375, N'HUNGC', 3, CAST(0x00008A4B00000000 AS DateTime), CAST(0x00008A6700000000 AS DateTime), CAST(0x00008A4E00000000 AS DateTime), 2, CAST(20.12000 AS Decimal(19, 5)), N'Hungry Coyote Import Store', N'City Center Plaza 516 Main St.', N'Elgin', N'OR', N'97827', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10376, N'MEREP', 1, CAST(0x00008A4E00000000 AS DateTime), CAST(0x00008A6A00000000 AS DateTime), CAST(0x00008A5200000000 AS DateTime), 2, CAST(20.39000 AS Decimal(19, 5)), N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10377, N'SEVES', 1, CAST(0x00008A4E00000000 AS DateTime), CAST(0x00008A6A00000000 AS DateTime), CAST(0x00008A5200000000 AS DateTime), 3, CAST(22.21000 AS Decimal(19, 5)), N'Seven Seas Imports', N'90 Wadhurst Rd.', N'London', N'null', N'OX15 4NB', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10378, N'FOLKO', 5, CAST(0x00008A4F00000000 AS DateTime), CAST(0x00008A6B00000000 AS DateTime), CAST(0x00008A5800000000 AS DateTime), 3, CAST(5.44000 AS Decimal(19, 5)), N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', N'null', N'S-844 67', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10379, N'QUEDE', 2, CAST(0x00008A5000000000 AS DateTime), CAST(0x00008A6C00000000 AS DateTime), CAST(0x00008A5200000000 AS DateTime), 1, CAST(45.03000 AS Decimal(19, 5)), N'Que Delícia', N'Rua da Panificadora, 12', N'Rio de Janeiro', N'RJ', N'02389-673', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10380, N'HUNGO', 8, CAST(0x00008A5100000000 AS DateTime), CAST(0x00008A6D00000000 AS DateTime), CAST(0x00008A7400000000 AS DateTime), 3, CAST(35.03000 AS Decimal(19, 5)), N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', N'null', N'Ireland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10381, N'LILAS', 3, CAST(0x00008A5100000000 AS DateTime), CAST(0x00008A6D00000000 AS DateTime), CAST(0x00008A5200000000 AS DateTime), 3, CAST(7.99000 AS Decimal(19, 5)), N'LILA-Supermercado', N'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', N'Barquisimeto', N'Lara', N'3508', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10382, N'ERNSH', 4, CAST(0x00008A5200000000 AS DateTime), CAST(0x00008A6E00000000 AS DateTime), CAST(0x00008A5500000000 AS DateTime), 1, CAST(94.77000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10383, N'AROUT', 8, CAST(0x00008A5500000000 AS DateTime), CAST(0x00008A7100000000 AS DateTime), CAST(0x00008A5700000000 AS DateTime), 3, CAST(34.24000 AS Decimal(19, 5)), N'Around the Horn', N'Brook Farm Stratford St. Mary', N'Colchester', N'Essex', N'CO7 6JX', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10384, N'BERGS', 3, CAST(0x00008A5500000000 AS DateTime), CAST(0x00008A7100000000 AS DateTime), CAST(0x00008A5900000000 AS DateTime), 3, CAST(168.64000 AS Decimal(19, 5)), N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', N'null', N'S-958 22', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10385, N'SPLIR', 1, CAST(0x00008A5600000000 AS DateTime), CAST(0x00008A7200000000 AS DateTime), CAST(0x00008A5C00000000 AS DateTime), 2, CAST(30.96000 AS Decimal(19, 5)), N'Split Rail Beer & Ale', N'P.O. Box 555', N'Lander', N'WY', N'82520', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10386, N'FAMIA', 9, CAST(0x00008A5700000000 AS DateTime), CAST(0x00008A6500000000 AS DateTime), CAST(0x00008A5E00000000 AS DateTime), 3, CAST(13.99000 AS Decimal(19, 5)), N'Familia Arquibaldo', N'Rua Orós, 92', N'Sao Paulo', N'SP', N'05442-030', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10387, N'SANTG', 1, CAST(0x00008A5700000000 AS DateTime), CAST(0x00008A7300000000 AS DateTime), CAST(0x00008A5900000000 AS DateTime), 2, CAST(93.63000 AS Decimal(19, 5)), N'Santé Gourmet', N'Erling Skakkes gate 78', N'Stavern', N'null', N'4110', N'Norway')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10388, N'SEVES', 2, CAST(0x00008A5800000000 AS DateTime), CAST(0x00008A7400000000 AS DateTime), CAST(0x00008A5900000000 AS DateTime), 1, CAST(34.86000 AS Decimal(19, 5)), N'Seven Seas Imports', N'90 Wadhurst Rd.', N'London', N'null', N'OX15 4NB', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10389, N'BOTTM', 4, CAST(0x00008A5900000000 AS DateTime), CAST(0x00008A7500000000 AS DateTime), CAST(0x00008A5D00000000 AS DateTime), 2, CAST(47.42000 AS Decimal(19, 5)), N'Bottom-Dollar Markets', N'23 Tsawassen Blvd.', N'Tsawassen', N'BC', N'T2F 8M4', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10390, N'ERNSH', 6, CAST(0x00008A5C00000000 AS DateTime), CAST(0x00008A7800000000 AS DateTime), CAST(0x00008A5F00000000 AS DateTime), 1, CAST(126.38000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10391, N'DRACD', 3, CAST(0x00008A5C00000000 AS DateTime), CAST(0x00008A7800000000 AS DateTime), CAST(0x00008A6400000000 AS DateTime), 3, CAST(5.45000 AS Decimal(19, 5)), N'Drachenblut Delikatessen', N'Walserweg 21', N'Aachen', N'null', N'52066', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10392, N'PICCO', 2, CAST(0x00008A5D00000000 AS DateTime), CAST(0x00008A7900000000 AS DateTime), CAST(0x00008A6500000000 AS DateTime), 3, CAST(122.46000 AS Decimal(19, 5)), N'Piccolo und mehr', N'Geislweg 14', N'Salzburg', N'null', N'5020', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10393, N'SAVEA', 1, CAST(0x00008A5E00000000 AS DateTime), CAST(0x00008A7A00000000 AS DateTime), CAST(0x00008A6700000000 AS DateTime), 3, CAST(126.56000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10394, N'HUNGC', 1, CAST(0x00008A5E00000000 AS DateTime), CAST(0x00008A7A00000000 AS DateTime), CAST(0x00008A6700000000 AS DateTime), 3, CAST(30.34000 AS Decimal(19, 5)), N'Hungry Coyote Import Store', N'City Center Plaza 516 Main St.', N'Elgin', N'OR', N'97827', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10395, N'HILAA', 6, CAST(0x00008A5F00000000 AS DateTime), CAST(0x00008A7B00000000 AS DateTime), CAST(0x00008A6700000000 AS DateTime), 1, CAST(184.41000 AS Decimal(19, 5)), N'HILARION-Abastos', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10396, N'FRANK', 1, CAST(0x00008A6000000000 AS DateTime), CAST(0x00008A6E00000000 AS DateTime), CAST(0x00008A6A00000000 AS DateTime), 3, CAST(135.35000 AS Decimal(19, 5)), N'Frankenversand', N'Berliner Platz 43', N'München', N'null', N'80805', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10397, N'PRINI', 5, CAST(0x00008A6000000000 AS DateTime), CAST(0x00008A7C00000000 AS DateTime), CAST(0x00008A6600000000 AS DateTime), 1, CAST(60.26000 AS Decimal(19, 5)), N'Princesa Isabel Vinhos', N'Estrada da saúde n. 58', N'Lisboa', N'null', N'1756', N'Portugal')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10398, N'SAVEA', 2, CAST(0x00008A6300000000 AS DateTime), CAST(0x00008A7F00000000 AS DateTime), CAST(0x00008A6D00000000 AS DateTime), 3, CAST(89.16000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10399, N'VAFFE', 8, CAST(0x00008A6400000000 AS DateTime), CAST(0x00008A7200000000 AS DateTime), CAST(0x00008A6C00000000 AS DateTime), 3, CAST(27.36000 AS Decimal(19, 5)), N'Vaffeljernet', N'Smagsloget 45', N'Århus', N'null', N'8200', N'Denmark')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10400, N'EASTC', 1, CAST(0x00008A6500000000 AS DateTime), CAST(0x00008A8100000000 AS DateTime), CAST(0x00008A7400000000 AS DateTime), 3, CAST(83.93000 AS Decimal(19, 5)), N'Eastern Connection', N'35 King George', N'London', N'null', N'WX3 6FW', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10401, N'RATTC', 1, CAST(0x00008A6500000000 AS DateTime), CAST(0x00008A8100000000 AS DateTime), CAST(0x00008A6E00000000 AS DateTime), 1, CAST(12.51000 AS Decimal(19, 5)), N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10402, N'ERNSH', 8, CAST(0x00008A6600000000 AS DateTime), CAST(0x00008A9000000000 AS DateTime), CAST(0x00008A6E00000000 AS DateTime), 2, CAST(67.88000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10403, N'ERNSH', 4, CAST(0x00008A6700000000 AS DateTime), CAST(0x00008A8300000000 AS DateTime), CAST(0x00008A6D00000000 AS DateTime), 3, CAST(73.79000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10404, N'MAGAA', 2, CAST(0x00008A6700000000 AS DateTime), CAST(0x00008A8300000000 AS DateTime), CAST(0x00008A6C00000000 AS DateTime), 1, CAST(155.97000 AS Decimal(19, 5)), N'Magazzini Alimentari Riuniti', N'Via Ludovico il Moro 22', N'Bergamo', N'null', N'24100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10405, N'LINOD', 1, CAST(0x00008A6A00000000 AS DateTime), CAST(0x00008A8600000000 AS DateTime), CAST(0x00008A7A00000000 AS DateTime), 1, CAST(34.82000 AS Decimal(19, 5)), N'LINO-Delicateses', N'Ave. 5 de Mayo Porlamar', N'I. de Margarita', N'Nueva Esparta', N'4980', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10406, N'QUEEN', 7, CAST(0x00008A6B00000000 AS DateTime), CAST(0x00008A9500000000 AS DateTime), CAST(0x00008A7100000000 AS DateTime), 1, CAST(108.04000 AS Decimal(19, 5)), N'Queen Cozinha', N'Alameda dos Canàrios, 891', N'Sao Paulo', N'SP', N'05487-020', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10407, N'OTTIK', 2, CAST(0x00008A6B00000000 AS DateTime), CAST(0x00008A8700000000 AS DateTime), CAST(0x00008A8200000000 AS DateTime), 2, CAST(91.48000 AS Decimal(19, 5)), N'Ottilies Käseladen', N'Mehrheimerstr. 369', N'Köln', N'null', N'50739', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10408, N'FOLIG', 8, CAST(0x00008A6C00000000 AS DateTime), CAST(0x00008A8800000000 AS DateTime), CAST(0x00008A7200000000 AS DateTime), 1, CAST(11.26000 AS Decimal(19, 5)), N'Folies gourmandes', N'184, chaussée de Tournai', N'Lille', N'null', N'59000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10409, N'OCEAN', 3, CAST(0x00008A6D00000000 AS DateTime), CAST(0x00008A8900000000 AS DateTime), CAST(0x00008A7200000000 AS DateTime), 1, CAST(29.83000 AS Decimal(19, 5)), N'Océano Atlántico Ltda.', N'Ing. Gustavo Moncada 8585 Piso 20-A', N'Buenos Aires', N'null', N'1010', N'Argentina')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10410, N'BOTTM', 3, CAST(0x00008A6E00000000 AS DateTime), CAST(0x00008A8A00000000 AS DateTime), CAST(0x00008A7300000000 AS DateTime), 3, CAST(2.40000 AS Decimal(19, 5)), N'Bottom-Dollar Markets', N'23 Tsawassen Blvd.', N'Tsawassen', N'BC', N'T2F 8M4', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10411, N'BOTTM', 9, CAST(0x00008A6E00000000 AS DateTime), CAST(0x00008A8A00000000 AS DateTime), CAST(0x00008A7900000000 AS DateTime), 3, CAST(23.65000 AS Decimal(19, 5)), N'Bottom-Dollar Markets', N'23 Tsawassen Blvd.', N'Tsawassen', N'BC', N'T2F 8M4', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10412, N'WARTH', 8, CAST(0x00008A7100000000 AS DateTime), CAST(0x00008A8D00000000 AS DateTime), CAST(0x00008A7300000000 AS DateTime), 2, CAST(3.77000 AS Decimal(19, 5)), N'Wartian Herkku', N'Torikatu 38', N'Oulu', N'null', N'90110', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10413, N'LAMAI', 3, CAST(0x00008A7200000000 AS DateTime), CAST(0x00008A8E00000000 AS DateTime), CAST(0x00008A7400000000 AS DateTime), 2, CAST(95.66000 AS Decimal(19, 5)), N'La maison d''Asie', N'1 rue Alsace-Lorraine', N'Toulouse', N'null', N'31000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10414, N'FAMIA', 2, CAST(0x00008A7200000000 AS DateTime), CAST(0x00008A8E00000000 AS DateTime), CAST(0x00008A7500000000 AS DateTime), 3, CAST(21.48000 AS Decimal(19, 5)), N'Familia Arquibaldo', N'Rua Orós, 92', N'Sao Paulo', N'SP', N'05442-030', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10415, N'HUNGC', 3, CAST(0x00008A7300000000 AS DateTime), CAST(0x00008A8F00000000 AS DateTime), CAST(0x00008A7C00000000 AS DateTime), 1, CAST(0.20000 AS Decimal(19, 5)), N'Hungry Coyote Import Store', N'City Center Plaza 516 Main St.', N'Elgin', N'OR', N'97827', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10416, N'WARTH', 8, CAST(0x00008A7400000000 AS DateTime), CAST(0x00008A9000000000 AS DateTime), CAST(0x00008A7F00000000 AS DateTime), 3, CAST(22.72000 AS Decimal(19, 5)), N'Wartian Herkku', N'Torikatu 38', N'Oulu', N'null', N'90110', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10417, N'SIMOB', 4, CAST(0x00008A7400000000 AS DateTime), CAST(0x00008A9000000000 AS DateTime), CAST(0x00008A8000000000 AS DateTime), 3, CAST(70.29000 AS Decimal(19, 5)), N'Simons bistro', N'Vinbæltet 34', N'Kobenhavn', N'null', N'1734', N'Denmark')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10418, N'QUICK', 4, CAST(0x00008A7500000000 AS DateTime), CAST(0x00008A9100000000 AS DateTime), CAST(0x00008A7C00000000 AS DateTime), 1, CAST(17.55000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10419, N'RICSU', 4, CAST(0x00008A7800000000 AS DateTime), CAST(0x00008A9400000000 AS DateTime), CAST(0x00008A8200000000 AS DateTime), 2, CAST(137.35000 AS Decimal(19, 5)), N'Richter Supermarkt', N'Starenweg 5', N'Genève', N'null', N'1204', N'Switzerland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10420, N'WELLI', 3, CAST(0x00008A7900000000 AS DateTime), CAST(0x00008A9500000000 AS DateTime), CAST(0x00008A7F00000000 AS DateTime), 1, CAST(44.12000 AS Decimal(19, 5)), N'Wellington Importadora', N'Rua do Mercado, 12', N'Resende', N'SP', N'08737-363', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10421, N'QUEDE', 8, CAST(0x00008A7900000000 AS DateTime), CAST(0x00008AA300000000 AS DateTime), CAST(0x00008A7F00000000 AS DateTime), 1, CAST(99.23000 AS Decimal(19, 5)), N'Que Delícia', N'Rua da Panificadora, 12', N'Rio de Janeiro', N'RJ', N'02389-673', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10422, N'FRANS', 2, CAST(0x00008A7A00000000 AS DateTime), CAST(0x00008A9600000000 AS DateTime), CAST(0x00008A8300000000 AS DateTime), 1, CAST(3.02000 AS Decimal(19, 5)), N'Franchi S.p.A.', N'Via Monte Bianco 34', N'Torino', N'null', N'10100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10423, N'GOURL', 6, CAST(0x00008A7B00000000 AS DateTime), CAST(0x00008A8900000000 AS DateTime), CAST(0x00008A9B00000000 AS DateTime), 3, CAST(24.50000 AS Decimal(19, 5)), N'Gourmet Lanchonetes', N'Av. Brasil, 442', N'Campinas', N'SP', N'04876-786', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10424, N'MEREP', 7, CAST(0x00008A7B00000000 AS DateTime), CAST(0x00008A9700000000 AS DateTime), CAST(0x00008A7F00000000 AS DateTime), 2, CAST(370.61000 AS Decimal(19, 5)), N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10425, N'LAMAI', 6, CAST(0x00008A7C00000000 AS DateTime), CAST(0x00008A9800000000 AS DateTime), CAST(0x00008A9100000000 AS DateTime), 2, CAST(7.93000 AS Decimal(19, 5)), N'La maison d''Asie', N'1 rue Alsace-Lorraine', N'Toulouse', N'null', N'31000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10426, N'GALED', 4, CAST(0x00008A7F00000000 AS DateTime), CAST(0x00008A9B00000000 AS DateTime), CAST(0x00008A8900000000 AS DateTime), 1, CAST(18.69000 AS Decimal(19, 5)), N'Galería del gastronómo', N'Rambla de Cataluña, 23', N'Barcelona', N'null', N'8022', N'Spain')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10427, N'PICCO', 4, CAST(0x00008A7F00000000 AS DateTime), CAST(0x00008A9B00000000 AS DateTime), CAST(0x00008AA200000000 AS DateTime), 2, CAST(31.29000 AS Decimal(19, 5)), N'Piccolo und mehr', N'Geislweg 14', N'Salzburg', N'null', N'5020', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10428, N'REGGC', 7, CAST(0x00008A8000000000 AS DateTime), CAST(0x00008A9C00000000 AS DateTime), CAST(0x00008A8700000000 AS DateTime), 1, CAST(11.09000 AS Decimal(19, 5)), N'Reggiani Caseifici', N'Strada Provinciale 124', N'Reggio Emilia', N'null', N'42100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10429, N'HUNGO', 3, CAST(0x00008A8100000000 AS DateTime), CAST(0x00008AAB00000000 AS DateTime), CAST(0x00008A8A00000000 AS DateTime), 2, CAST(56.63000 AS Decimal(19, 5)), N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', N'null', N'Ireland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10430, N'ERNSH', 4, CAST(0x00008A8200000000 AS DateTime), CAST(0x00008A9000000000 AS DateTime), CAST(0x00008A8600000000 AS DateTime), 1, CAST(458.78000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10431, N'BOTTM', 4, CAST(0x00008A8200000000 AS DateTime), CAST(0x00008A9000000000 AS DateTime), CAST(0x00008A8A00000000 AS DateTime), 2, CAST(44.17000 AS Decimal(19, 5)), N'Bottom-Dollar Markets', N'23 Tsawassen Blvd.', N'Tsawassen', N'BC', N'T2F 8M4', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10432, N'SPLIR', 3, CAST(0x00008A8300000000 AS DateTime), CAST(0x00008A9100000000 AS DateTime), CAST(0x00008A8A00000000 AS DateTime), 2, CAST(4.34000 AS Decimal(19, 5)), N'Split Rail Beer & Ale', N'P.O. Box 555', N'Lander', N'WY', N'82520', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10433, N'PRINI', 3, CAST(0x00008A8600000000 AS DateTime), CAST(0x00008AA200000000 AS DateTime), CAST(0x00008AA300000000 AS DateTime), 3, CAST(73.83000 AS Decimal(19, 5)), N'Princesa Isabel Vinhos', N'Estrada da saúde n. 58', N'Lisboa', N'null', N'1756', N'Portugal')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10434, N'FOLKO', 3, CAST(0x00008A8600000000 AS DateTime), CAST(0x00008AA200000000 AS DateTime), CAST(0x00008A9000000000 AS DateTime), 2, CAST(17.92000 AS Decimal(19, 5)), N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', N'null', N'S-844 67', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10435, N'CONSH', 8, CAST(0x00008A8700000000 AS DateTime), CAST(0x00008AB100000000 AS DateTime), CAST(0x00008A8A00000000 AS DateTime), 2, CAST(9.21000 AS Decimal(19, 5)), N'Consolidated Holdings', N'Berkeley Gardens 12 Brewery', N'London', N'null', N'WX1 6LT', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10436, N'BLONP', 3, CAST(0x00008A8800000000 AS DateTime), CAST(0x00008AA400000000 AS DateTime), CAST(0x00008A8E00000000 AS DateTime), 2, CAST(156.66000 AS Decimal(19, 5)), N'Blondel père et fils', N'24, place Kléber', N'Strasbourg', N'null', N'67000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10437, N'WARTH', 8, CAST(0x00008A8800000000 AS DateTime), CAST(0x00008AA400000000 AS DateTime), CAST(0x00008A8F00000000 AS DateTime), 1, CAST(19.97000 AS Decimal(19, 5)), N'Wartian Herkku', N'Torikatu 38', N'Oulu', N'null', N'90110', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10438, N'TOMSP', 3, CAST(0x00008A8900000000 AS DateTime), CAST(0x00008AA500000000 AS DateTime), CAST(0x00008A9100000000 AS DateTime), 2, CAST(8.24000 AS Decimal(19, 5)), N'Toms Spezialitäten', N'Luisenstr. 48', N'Münster', N'null', N'44087', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10439, N'MEREP', 6, CAST(0x00008A8A00000000 AS DateTime), CAST(0x00008AA600000000 AS DateTime), CAST(0x00008A8D00000000 AS DateTime), 3, CAST(4.07000 AS Decimal(19, 5)), N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10440, N'SAVEA', 4, CAST(0x00008A8D00000000 AS DateTime), CAST(0x00008AA900000000 AS DateTime), CAST(0x00008A9F00000000 AS DateTime), 2, CAST(86.53000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10441, N'OLDWO', 3, CAST(0x00008A8D00000000 AS DateTime), CAST(0x00008AB700000000 AS DateTime), CAST(0x00008AAD00000000 AS DateTime), 2, CAST(73.02000 AS Decimal(19, 5)), N'Old World Delicatessen', N'2743 Bering St.', N'Anchorage', N'AK', N'99508', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10442, N'ERNSH', 3, CAST(0x00008A8E00000000 AS DateTime), CAST(0x00008AAA00000000 AS DateTime), CAST(0x00008A9500000000 AS DateTime), 2, CAST(47.94000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10443, N'REGGC', 8, CAST(0x00008A8F00000000 AS DateTime), CAST(0x00008AAB00000000 AS DateTime), CAST(0x00008A9100000000 AS DateTime), 1, CAST(13.95000 AS Decimal(19, 5)), N'Reggiani Caseifici', N'Strada Provinciale 124', N'Reggio Emilia', N'null', N'42100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10444, N'BERGS', 3, CAST(0x00008A8F00000000 AS DateTime), CAST(0x00008AAB00000000 AS DateTime), CAST(0x00008A9800000000 AS DateTime), 3, CAST(3.50000 AS Decimal(19, 5)), N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', N'null', N'S-958 22', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10445, N'BERGS', 3, CAST(0x00008A9000000000 AS DateTime), CAST(0x00008AAC00000000 AS DateTime), CAST(0x00008A9700000000 AS DateTime), 1, CAST(9.30000 AS Decimal(19, 5)), N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', N'null', N'S-958 22', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10446, N'TOMSP', 6, CAST(0x00008A9100000000 AS DateTime), CAST(0x00008AAD00000000 AS DateTime), CAST(0x00008A9600000000 AS DateTime), 1, CAST(14.68000 AS Decimal(19, 5)), N'Toms Spezialitäten', N'Luisenstr. 48', N'Münster', N'null', N'44087', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10447, N'RICAR', 4, CAST(0x00008A9100000000 AS DateTime), CAST(0x00008AAD00000000 AS DateTime), CAST(0x00008AA600000000 AS DateTime), 2, CAST(68.66000 AS Decimal(19, 5)), N'Ricardo Adocicados', N'Av. Copacabana, 267', N'Rio de Janeiro', N'RJ', N'02389-890', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10448, N'RANCH', 4, CAST(0x00008A9400000000 AS DateTime), CAST(0x00008AB000000000 AS DateTime), CAST(0x00008A9B00000000 AS DateTime), 2, CAST(38.82000 AS Decimal(19, 5)), N'Rancho grande', N'Av. del Libertador 900', N'Buenos Aires', N'null', N'1010', N'Argentina')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10449, N'BLONP', 3, CAST(0x00008A9500000000 AS DateTime), CAST(0x00008AB100000000 AS DateTime), CAST(0x00008A9E00000000 AS DateTime), 2, CAST(53.30000 AS Decimal(19, 5)), N'Blondel père et fils', N'24, place Kléber', N'Strasbourg', N'null', N'67000', N'France')
GO
print 'Processed 200 total records'
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10450, N'VICTE', 8, CAST(0x00008A9600000000 AS DateTime), CAST(0x00008AB200000000 AS DateTime), CAST(0x00008AAA00000000 AS DateTime), 2, CAST(7.23000 AS Decimal(19, 5)), N'Victuailles en stock', N'2, rue du Commerce', N'Lyon', N'null', N'69004', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10451, N'QUICK', 4, CAST(0x00008A9600000000 AS DateTime), CAST(0x00008AA400000000 AS DateTime), CAST(0x00008AAB00000000 AS DateTime), 3, CAST(189.09000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10452, N'SAVEA', 8, CAST(0x00008A9700000000 AS DateTime), CAST(0x00008AB300000000 AS DateTime), CAST(0x00008A9D00000000 AS DateTime), 1, CAST(140.26000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10453, N'AROUT', 1, CAST(0x00008A9800000000 AS DateTime), CAST(0x00008AB400000000 AS DateTime), CAST(0x00008A9D00000000 AS DateTime), 2, CAST(25.36000 AS Decimal(19, 5)), N'Around the Horn', N'Brook Farm Stratford St. Mary', N'Colchester', N'Essex', N'CO7 6JX', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10454, N'LAMAI', 4, CAST(0x00008A9800000000 AS DateTime), CAST(0x00008AB400000000 AS DateTime), CAST(0x00008A9C00000000 AS DateTime), 3, CAST(2.74000 AS Decimal(19, 5)), N'La maison d''Asie', N'1 rue Alsace-Lorraine', N'Toulouse', N'null', N'31000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10455, N'WARTH', 8, CAST(0x00008A9B00000000 AS DateTime), CAST(0x00008AC500000000 AS DateTime), CAST(0x00008AA200000000 AS DateTime), 2, CAST(180.45000 AS Decimal(19, 5)), N'Wartian Herkku', N'Torikatu 38', N'Oulu', N'null', N'90110', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10456, N'KOENE', 8, CAST(0x00008A9C00000000 AS DateTime), CAST(0x00008AC600000000 AS DateTime), CAST(0x00008A9F00000000 AS DateTime), 2, CAST(8.12000 AS Decimal(19, 5)), N'Königlich Essen', N'Maubelstr. 90', N'Brandenburg', N'null', N'14776', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10457, N'KOENE', 2, CAST(0x00008A9C00000000 AS DateTime), CAST(0x00008AB800000000 AS DateTime), CAST(0x00008AA200000000 AS DateTime), 1, CAST(11.57000 AS Decimal(19, 5)), N'Königlich Essen', N'Maubelstr. 90', N'Brandenburg', N'null', N'14776', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10458, N'SUPRD', 7, CAST(0x00008A9D00000000 AS DateTime), CAST(0x00008AB900000000 AS DateTime), CAST(0x00008AA300000000 AS DateTime), 3, CAST(147.06000 AS Decimal(19, 5)), N'Suprêmes délices', N'Boulevard Tirou, 255', N'Charleroi', N'null', N'B-6000', N'Belgium')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10459, N'VICTE', 4, CAST(0x00008A9E00000000 AS DateTime), CAST(0x00008ABA00000000 AS DateTime), CAST(0x00008A9F00000000 AS DateTime), 2, CAST(25.09000 AS Decimal(19, 5)), N'Victuailles en stock', N'2, rue du Commerce', N'Lyon', N'null', N'69004', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10460, N'FOLKO', 8, CAST(0x00008A9F00000000 AS DateTime), CAST(0x00008ABB00000000 AS DateTime), CAST(0x00008AA200000000 AS DateTime), 1, CAST(16.27000 AS Decimal(19, 5)), N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', N'null', N'S-844 67', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10461, N'LILAS', 1, CAST(0x00008A9F00000000 AS DateTime), CAST(0x00008ABB00000000 AS DateTime), CAST(0x00008AA400000000 AS DateTime), 3, CAST(148.61000 AS Decimal(19, 5)), N'LILA-Supermercado', N'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', N'Barquisimeto', N'Lara', N'3508', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10462, N'CONSH', 2, CAST(0x00008AA200000000 AS DateTime), CAST(0x00008ABE00000000 AS DateTime), CAST(0x00008AB100000000 AS DateTime), 1, CAST(6.17000 AS Decimal(19, 5)), N'Consolidated Holdings', N'Berkeley Gardens 12 Brewery', N'London', N'null', N'WX1 6LT', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10463, N'SUPRD', 5, CAST(0x00008AA300000000 AS DateTime), CAST(0x00008ABF00000000 AS DateTime), CAST(0x00008AA500000000 AS DateTime), 3, CAST(14.78000 AS Decimal(19, 5)), N'Suprêmes délices', N'Boulevard Tirou, 255', N'Charleroi', N'null', N'B-6000', N'Belgium')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10464, N'FURIB', 4, CAST(0x00008AA300000000 AS DateTime), CAST(0x00008ABF00000000 AS DateTime), CAST(0x00008AAD00000000 AS DateTime), 2, CAST(89.00000 AS Decimal(19, 5)), N'Furia Bacalhau e Frutos do Mar', N'Jardim das rosas n. 32', N'Lisboa', N'null', N'1675', N'Portugal')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10465, N'VAFFE', 1, CAST(0x00008AA400000000 AS DateTime), CAST(0x00008AC000000000 AS DateTime), CAST(0x00008AAD00000000 AS DateTime), 3, CAST(145.04000 AS Decimal(19, 5)), N'Vaffeljernet', N'Smagsloget 45', N'Århus', N'null', N'8200', N'Denmark')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10466, N'COMMI', 4, CAST(0x00008AA500000000 AS DateTime), CAST(0x00008AC100000000 AS DateTime), CAST(0x00008AAC00000000 AS DateTime), 1, CAST(11.93000 AS Decimal(19, 5)), N'Comércio Mineiro', N'Av. dos Lusíadas, 23', N'Sao Paulo', N'SP', N'05432-043', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10467, N'MAGAA', 8, CAST(0x00008AA500000000 AS DateTime), CAST(0x00008AC100000000 AS DateTime), CAST(0x00008AAA00000000 AS DateTime), 2, CAST(4.93000 AS Decimal(19, 5)), N'Magazzini Alimentari Riuniti', N'Via Ludovico il Moro 22', N'Bergamo', N'null', N'24100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10468, N'KOENE', 3, CAST(0x00008AA600000000 AS DateTime), CAST(0x00008AC200000000 AS DateTime), CAST(0x00008AAB00000000 AS DateTime), 3, CAST(44.12000 AS Decimal(19, 5)), N'Königlich Essen', N'Maubelstr. 90', N'Brandenburg', N'null', N'14776', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10469, N'WHITC', 1, CAST(0x00008AA900000000 AS DateTime), CAST(0x00008AC500000000 AS DateTime), CAST(0x00008AAD00000000 AS DateTime), 1, CAST(60.18000 AS Decimal(19, 5)), N'White Clover Markets', N'1029 - 12th Ave. S.', N'Seattle', N'WA', N'98124', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10470, N'BONAP', 4, CAST(0x00008AAA00000000 AS DateTime), CAST(0x00008AC600000000 AS DateTime), CAST(0x00008AAD00000000 AS DateTime), 2, CAST(64.56000 AS Decimal(19, 5)), N'Bon app''', N'12, rue des Bouchers', N'Marseille', N'null', N'13008', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10471, N'BSBEV', 2, CAST(0x00008AAA00000000 AS DateTime), CAST(0x00008AC600000000 AS DateTime), CAST(0x00008AB100000000 AS DateTime), 3, CAST(45.59000 AS Decimal(19, 5)), N'B''s Beverages', N'Fauntleroy Circus', N'London', N'null', N'EC2 5NT', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10472, N'SEVES', 8, CAST(0x00008AAB00000000 AS DateTime), CAST(0x00008AC700000000 AS DateTime), CAST(0x00008AB200000000 AS DateTime), 1, CAST(4.20000 AS Decimal(19, 5)), N'Seven Seas Imports', N'90 Wadhurst Rd.', N'London', N'null', N'OX15 4NB', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10473, N'ISLAT', 1, CAST(0x00008AAC00000000 AS DateTime), CAST(0x00008ABA00000000 AS DateTime), CAST(0x00008AB400000000 AS DateTime), 3, CAST(16.37000 AS Decimal(19, 5)), N'Island Trading', N'Garden House Crowther Way', N'Cowes', N'Isle of Wight', N'PO31 7PJ', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10474, N'PERIC', 5, CAST(0x00008AAC00000000 AS DateTime), CAST(0x00008AC800000000 AS DateTime), CAST(0x00008AB400000000 AS DateTime), 2, CAST(83.49000 AS Decimal(19, 5)), N'Pericles Comidas clásicas', N'Calle Dr. Jorge Cash 321', N'México D.F.', N'null', N'05033', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10475, N'SUPRD', 9, CAST(0x00008AAD00000000 AS DateTime), CAST(0x00008AC900000000 AS DateTime), CAST(0x00008AC200000000 AS DateTime), 1, CAST(68.52000 AS Decimal(19, 5)), N'Suprêmes délices', N'Boulevard Tirou, 255', N'Charleroi', N'null', N'B-6000', N'Belgium')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10476, N'HILAA', 8, CAST(0x00008AB000000000 AS DateTime), CAST(0x00008ACC00000000 AS DateTime), CAST(0x00008AB700000000 AS DateTime), 3, CAST(4.41000 AS Decimal(19, 5)), N'HILARION-Abastos', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10477, N'PRINI', 5, CAST(0x00008AB000000000 AS DateTime), CAST(0x00008ACC00000000 AS DateTime), CAST(0x00008AB800000000 AS DateTime), 2, CAST(13.02000 AS Decimal(19, 5)), N'Princesa Isabel Vinhos', N'Estrada da saúde n. 58', N'Lisboa', N'null', N'1756', N'Portugal')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10478, N'VICTE', 2, CAST(0x00008AB100000000 AS DateTime), CAST(0x00008ABF00000000 AS DateTime), CAST(0x00008AB900000000 AS DateTime), 3, CAST(4.81000 AS Decimal(19, 5)), N'Victuailles en stock', N'2, rue du Commerce', N'Lyon', N'null', N'69004', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10479, N'RATTC', 3, CAST(0x00008AB200000000 AS DateTime), CAST(0x00008ACE00000000 AS DateTime), CAST(0x00008AB400000000 AS DateTime), 3, CAST(708.95000 AS Decimal(19, 5)), N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10480, N'FOLIG', 6, CAST(0x00008AB300000000 AS DateTime), CAST(0x00008ACF00000000 AS DateTime), CAST(0x00008AB700000000 AS DateTime), 2, CAST(1.35000 AS Decimal(19, 5)), N'Folies gourmandes', N'184, chaussée de Tournai', N'Lille', N'null', N'59000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10481, N'RICAR', 8, CAST(0x00008AB300000000 AS DateTime), CAST(0x00008ACF00000000 AS DateTime), CAST(0x00008AB800000000 AS DateTime), 2, CAST(64.33000 AS Decimal(19, 5)), N'Ricardo Adocicados', N'Av. Copacabana, 267', N'Rio de Janeiro', N'RJ', N'02389-890', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10482, N'LAZYK', 1, CAST(0x00008AB400000000 AS DateTime), CAST(0x00008AD000000000 AS DateTime), CAST(0x00008AC800000000 AS DateTime), 3, CAST(7.48000 AS Decimal(19, 5)), N'Lazy K Kountry Store', N'12 Orchestra Terrace', N'Walla Walla', N'WA', N'99362', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10483, N'WHITC', 7, CAST(0x00008AB700000000 AS DateTime), CAST(0x00008AD300000000 AS DateTime), CAST(0x00008AD700000000 AS DateTime), 2, CAST(15.28000 AS Decimal(19, 5)), N'White Clover Markets', N'1029 - 12th Ave. S.', N'Seattle', N'WA', N'98124', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10484, N'BSBEV', 3, CAST(0x00008AB700000000 AS DateTime), CAST(0x00008AD300000000 AS DateTime), CAST(0x00008ABF00000000 AS DateTime), 3, CAST(6.88000 AS Decimal(19, 5)), N'B''s Beverages', N'Fauntleroy Circus', N'London', N'null', N'EC2 5NT', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10485, N'LINOD', 4, CAST(0x00008AB800000000 AS DateTime), CAST(0x00008AC600000000 AS DateTime), CAST(0x00008ABE00000000 AS DateTime), 2, CAST(64.45000 AS Decimal(19, 5)), N'LINO-Delicateses', N'Ave. 5 de Mayo Porlamar', N'I. de Margarita', N'Nueva Esparta', N'4980', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10486, N'HILAA', 1, CAST(0x00008AB900000000 AS DateTime), CAST(0x00008AD500000000 AS DateTime), CAST(0x00008AC000000000 AS DateTime), 2, CAST(30.53000 AS Decimal(19, 5)), N'HILARION-Abastos', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10487, N'QUEEN', 2, CAST(0x00008AB900000000 AS DateTime), CAST(0x00008AD500000000 AS DateTime), CAST(0x00008ABB00000000 AS DateTime), 2, CAST(71.07000 AS Decimal(19, 5)), N'Queen Cozinha', N'Alameda dos Canàrios, 891', N'Sao Paulo', N'SP', N'05487-020', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10488, N'FRANK', 8, CAST(0x00008ABA00000000 AS DateTime), CAST(0x00008AD600000000 AS DateTime), CAST(0x00008AC000000000 AS DateTime), 2, CAST(4.93000 AS Decimal(19, 5)), N'Frankenversand', N'Berliner Platz 43', N'München', N'null', N'80805', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10489, N'PICCO', 6, CAST(0x00008ABB00000000 AS DateTime), CAST(0x00008AD700000000 AS DateTime), CAST(0x00008AC700000000 AS DateTime), 2, CAST(5.29000 AS Decimal(19, 5)), N'Piccolo und mehr', N'Geislweg 14', N'Salzburg', N'null', N'5020', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10490, N'HILAA', 7, CAST(0x00008ABE00000000 AS DateTime), CAST(0x00008ADA00000000 AS DateTime), CAST(0x00008AC100000000 AS DateTime), 2, CAST(210.19000 AS Decimal(19, 5)), N'HILARION-Abastos', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10491, N'FURIB', 8, CAST(0x00008ABE00000000 AS DateTime), CAST(0x00008ADA00000000 AS DateTime), CAST(0x00008AC600000000 AS DateTime), 3, CAST(16.96000 AS Decimal(19, 5)), N'Furia Bacalhau e Frutos do Mar', N'Jardim das rosas n. 32', N'Lisboa', N'null', N'1675', N'Portugal')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10492, N'BOTTM', 3, CAST(0x00008ABF00000000 AS DateTime), CAST(0x00008ADB00000000 AS DateTime), CAST(0x00008AC900000000 AS DateTime), 1, CAST(62.89000 AS Decimal(19, 5)), N'Bottom-Dollar Markets', N'23 Tsawassen Blvd.', N'Tsawassen', N'BC', N'T2F 8M4', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10493, N'LAMAI', 4, CAST(0x00008AC000000000 AS DateTime), CAST(0x00008ADC00000000 AS DateTime), CAST(0x00008AC800000000 AS DateTime), 3, CAST(10.64000 AS Decimal(19, 5)), N'La maison d''Asie', N'1 rue Alsace-Lorraine', N'Toulouse', N'null', N'31000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10494, N'COMMI', 4, CAST(0x00008AC000000000 AS DateTime), CAST(0x00008ADC00000000 AS DateTime), CAST(0x00008AC700000000 AS DateTime), 2, CAST(65.99000 AS Decimal(19, 5)), N'Comércio Mineiro', N'Av. dos Lusíadas, 23', N'Sao Paulo', N'SP', N'05432-043', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10495, N'LAUGB', 3, CAST(0x00008AC100000000 AS DateTime), CAST(0x00008ADD00000000 AS DateTime), CAST(0x00008AC900000000 AS DateTime), 3, CAST(4.65000 AS Decimal(19, 5)), N'Laughing Bacchus Wine Cellars', N'2319 Elm St.', N'Vancouver', N'BC', N'V3F 2K1', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10496, N'TRADH', 7, CAST(0x00008AC200000000 AS DateTime), CAST(0x00008ADE00000000 AS DateTime), CAST(0x00008AC500000000 AS DateTime), 2, CAST(46.77000 AS Decimal(19, 5)), N'Tradiçao Hipermercados', N'Av. Inês de Castro, 414', N'Sao Paulo', N'SP', N'05634-030', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10497, N'LEHMS', 7, CAST(0x00008AC200000000 AS DateTime), CAST(0x00008ADE00000000 AS DateTime), CAST(0x00008AC500000000 AS DateTime), 1, CAST(36.21000 AS Decimal(19, 5)), N'Lehmanns Marktstand', N'Magazinweg 7', N'Frankfurt a.M.', N'null', N'60528', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10498, N'HILAA', 8, CAST(0x00008AC500000000 AS DateTime), CAST(0x00008AE100000000 AS DateTime), CAST(0x00008AC900000000 AS DateTime), 2, CAST(29.75000 AS Decimal(19, 5)), N'HILARION-Abastos', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10499, N'LILAS', 4, CAST(0x00008AC600000000 AS DateTime), CAST(0x00008AE200000000 AS DateTime), CAST(0x00008ACE00000000 AS DateTime), 2, CAST(102.02000 AS Decimal(19, 5)), N'LILA-Supermercado', N'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', N'Barquisimeto', N'Lara', N'3508', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10500, N'LAMAI', 6, CAST(0x00008AC700000000 AS DateTime), CAST(0x00008AE300000000 AS DateTime), CAST(0x00008ACF00000000 AS DateTime), 1, CAST(42.68000 AS Decimal(19, 5)), N'La maison d''Asie', N'1 rue Alsace-Lorraine', N'Toulouse', N'null', N'31000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10501, N'BLAUS', 9, CAST(0x00008AC700000000 AS DateTime), CAST(0x00008AE300000000 AS DateTime), CAST(0x00008ACE00000000 AS DateTime), 3, CAST(8.85000 AS Decimal(19, 5)), N'Blauer See Delikatessen', N'Forsterstr. 57', N'Mannheim', N'null', N'68306', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10502, N'PERIC', 2, CAST(0x00008AC800000000 AS DateTime), CAST(0x00008AE400000000 AS DateTime), CAST(0x00008ADB00000000 AS DateTime), 1, CAST(69.32000 AS Decimal(19, 5)), N'Pericles Comidas clásicas', N'Calle Dr. Jorge Cash 321', N'México D.F.', N'null', N'05033', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10503, N'HUNGO', 6, CAST(0x00008AC900000000 AS DateTime), CAST(0x00008AE500000000 AS DateTime), CAST(0x00008ACE00000000 AS DateTime), 2, CAST(16.74000 AS Decimal(19, 5)), N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', N'null', N'Ireland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10504, N'WHITC', 4, CAST(0x00008AC900000000 AS DateTime), CAST(0x00008AE500000000 AS DateTime), CAST(0x00008AD000000000 AS DateTime), 3, CAST(59.13000 AS Decimal(19, 5)), N'White Clover Markets', N'1029 - 12th Ave. S.', N'Seattle', N'WA', N'98124', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10505, N'MEREP', 3, CAST(0x00008ACC00000000 AS DateTime), CAST(0x00008AE800000000 AS DateTime), CAST(0x00008AD300000000 AS DateTime), 3, CAST(7.13000 AS Decimal(19, 5)), N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10506, N'KOENE', 9, CAST(0x00008ACD00000000 AS DateTime), CAST(0x00008AE900000000 AS DateTime), CAST(0x00008ADE00000000 AS DateTime), 2, CAST(21.19000 AS Decimal(19, 5)), N'Königlich Essen', N'Maubelstr. 90', N'Brandenburg', N'null', N'14776', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10507, N'ANTON', 7, CAST(0x00008ACD00000000 AS DateTime), CAST(0x00008AE900000000 AS DateTime), CAST(0x00008AD400000000 AS DateTime), 1, CAST(47.45000 AS Decimal(19, 5)), N'Antonio Moreno Taquería', N'Mataderos 2312', N'México D.F.', N'null', N'05023', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10508, N'OTTIK', 1, CAST(0x00008ACE00000000 AS DateTime), CAST(0x00008AEA00000000 AS DateTime), CAST(0x00008AE900000000 AS DateTime), 2, CAST(4.99000 AS Decimal(19, 5)), N'Ottilies Käseladen', N'Mehrheimerstr. 369', N'Köln', N'null', N'50739', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10509, N'BLAUS', 4, CAST(0x00008ACF00000000 AS DateTime), CAST(0x00008AEB00000000 AS DateTime), CAST(0x00008ADB00000000 AS DateTime), 1, CAST(0.15000 AS Decimal(19, 5)), N'Blauer See Delikatessen', N'Forsterstr. 57', N'Mannheim', N'null', N'68306', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10510, N'SAVEA', 6, CAST(0x00008AD000000000 AS DateTime), CAST(0x00008AEC00000000 AS DateTime), CAST(0x00008ADA00000000 AS DateTime), 3, CAST(367.63000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10511, N'BONAP', 4, CAST(0x00008AD000000000 AS DateTime), CAST(0x00008AEC00000000 AS DateTime), CAST(0x00008AD300000000 AS DateTime), 3, CAST(350.64000 AS Decimal(19, 5)), N'Bon app''', N'12, rue des Bouchers', N'Marseille', N'null', N'13008', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10512, N'FAMIA', 7, CAST(0x00008AD300000000 AS DateTime), CAST(0x00008AEF00000000 AS DateTime), CAST(0x00008AD600000000 AS DateTime), 2, CAST(3.53000 AS Decimal(19, 5)), N'Familia Arquibaldo', N'Rua Orós, 92', N'Sao Paulo', N'SP', N'05442-030', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10513, N'WANDK', 7, CAST(0x00008AD400000000 AS DateTime), CAST(0x00008AFE00000000 AS DateTime), CAST(0x00008ADA00000000 AS DateTime), 1, CAST(105.65000 AS Decimal(19, 5)), N'Die Wandernde Kuh', N'Adenauerallee 900', N'Stuttgart', N'null', N'70563', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10514, N'ERNSH', 3, CAST(0x00008AD400000000 AS DateTime), CAST(0x00008AF000000000 AS DateTime), CAST(0x00008AEC00000000 AS DateTime), 2, CAST(789.95000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10515, N'QUICK', 2, CAST(0x00008AD500000000 AS DateTime), CAST(0x00008AE300000000 AS DateTime), CAST(0x00008AF300000000 AS DateTime), 1, CAST(204.47000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10516, N'HUNGO', 2, CAST(0x00008AD600000000 AS DateTime), CAST(0x00008AF200000000 AS DateTime), CAST(0x00008ADD00000000 AS DateTime), 3, CAST(62.78000 AS Decimal(19, 5)), N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', N'null', N'Ireland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10517, N'NORTS', 3, CAST(0x00008AD600000000 AS DateTime), CAST(0x00008AF200000000 AS DateTime), CAST(0x00008ADB00000000 AS DateTime), 3, CAST(32.07000 AS Decimal(19, 5)), N'North/South', N'South House 300 Queensbridge', N'London', N'null', N'SW7 1RZ', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10518, N'TORTU', 4, CAST(0x00008AD700000000 AS DateTime), CAST(0x00008AE500000000 AS DateTime), CAST(0x00008AE100000000 AS DateTime), 2, CAST(218.15000 AS Decimal(19, 5)), N'Tortuga Restaurante', N'Avda. Azteca 123', N'México D.F.', N'null', N'05033', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10519, N'CHOPS', 6, CAST(0x00008ADA00000000 AS DateTime), CAST(0x00008AF600000000 AS DateTime), CAST(0x00008ADD00000000 AS DateTime), 3, CAST(91.76000 AS Decimal(19, 5)), N'Chop-suey Chinese', N'Hauptstr. 31', N'Bern', N'null', N'3012', N'Switzerland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10520, N'SANTG', 7, CAST(0x00008ADB00000000 AS DateTime), CAST(0x00008AF700000000 AS DateTime), CAST(0x00008ADD00000000 AS DateTime), 1, CAST(13.37000 AS Decimal(19, 5)), N'Santé Gourmet', N'Erling Skakkes gate 78', N'Stavern', N'null', N'4110', N'Norway')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10521, N'CACTU', 8, CAST(0x00008ADB00000000 AS DateTime), CAST(0x00008AF700000000 AS DateTime), CAST(0x00008ADE00000000 AS DateTime), 2, CAST(17.22000 AS Decimal(19, 5)), N'Cactus Comidas para llevar', N'Cerrito 333', N'Buenos Aires', N'null', N'1010', N'Argentina')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10522, N'LEHMS', 4, CAST(0x00008ADC00000000 AS DateTime), CAST(0x00008AF800000000 AS DateTime), CAST(0x00008AE200000000 AS DateTime), 1, CAST(45.33000 AS Decimal(19, 5)), N'Lehmanns Marktstand', N'Magazinweg 7', N'Frankfurt a.M.', N'null', N'60528', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10523, N'SEVES', 7, CAST(0x00008ADD00000000 AS DateTime), CAST(0x00008AF900000000 AS DateTime), CAST(0x00008AFA00000000 AS DateTime), 2, CAST(77.63000 AS Decimal(19, 5)), N'Seven Seas Imports', N'90 Wadhurst Rd.', N'London', N'null', N'OX15 4NB', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10524, N'BERGS', 1, CAST(0x00008ADD00000000 AS DateTime), CAST(0x00008AF900000000 AS DateTime), CAST(0x00008AE300000000 AS DateTime), 2, CAST(244.79000 AS Decimal(19, 5)), N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', N'null', N'S-958 22', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10525, N'BONAP', 1, CAST(0x00008ADE00000000 AS DateTime), CAST(0x00008AFA00000000 AS DateTime), CAST(0x00008AF300000000 AS DateTime), 2, CAST(11.06000 AS Decimal(19, 5)), N'Bon app''', N'12, rue des Bouchers', N'Marseille', N'null', N'13008', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10526, N'WARTH', 4, CAST(0x00008AE100000000 AS DateTime), CAST(0x00008AFD00000000 AS DateTime), CAST(0x00008AEB00000000 AS DateTime), 2, CAST(58.59000 AS Decimal(19, 5)), N'Wartian Herkku', N'Torikatu 38', N'Oulu', N'null', N'90110', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10527, N'QUICK', 7, CAST(0x00008AE100000000 AS DateTime), CAST(0x00008AFD00000000 AS DateTime), CAST(0x00008AE300000000 AS DateTime), 1, CAST(41.90000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10528, N'GREAL', 6, CAST(0x00008AE200000000 AS DateTime), CAST(0x00008AF000000000 AS DateTime), CAST(0x00008AE500000000 AS DateTime), 2, CAST(3.35000 AS Decimal(19, 5)), N'Great Lakes Food Market', N'2732 Baker Blvd.', N'Eugene', N'OR', N'97403', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10529, N'MAISD', 5, CAST(0x00008AE300000000 AS DateTime), CAST(0x00008AFF00000000 AS DateTime), CAST(0x00008AE500000000 AS DateTime), 2, CAST(66.69000 AS Decimal(19, 5)), N'Maison Dewey', N'Rue Joseph-Bens 532', N'Bruxelles', N'null', N'B-1180', N'Belgium')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10530, N'PICCO', 3, CAST(0x00008AE400000000 AS DateTime), CAST(0x00008B0000000000 AS DateTime), CAST(0x00008AE800000000 AS DateTime), 2, CAST(339.22000 AS Decimal(19, 5)), N'Piccolo und mehr', N'Geislweg 14', N'Salzburg', N'null', N'5020', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10531, N'OCEAN', 7, CAST(0x00008AE400000000 AS DateTime), CAST(0x00008B0000000000 AS DateTime), CAST(0x00008AEF00000000 AS DateTime), 1, CAST(8.12000 AS Decimal(19, 5)), N'Océano Atlántico Ltda.', N'Ing. Gustavo Moncada 8585 Piso 20-A', N'Buenos Aires', N'null', N'1010', N'Argentina')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10532, N'EASTC', 7, CAST(0x00008AE500000000 AS DateTime), CAST(0x00008B0100000000 AS DateTime), CAST(0x00008AE800000000 AS DateTime), 3, CAST(74.46000 AS Decimal(19, 5)), N'Eastern Connection', N'35 King George', N'London', N'null', N'WX3 6FW', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10533, N'FOLKO', 8, CAST(0x00008AE800000000 AS DateTime), CAST(0x00008B0400000000 AS DateTime), CAST(0x00008AF200000000 AS DateTime), 1, CAST(188.04000 AS Decimal(19, 5)), N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', N'null', N'S-844 67', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10534, N'LEHMS', 8, CAST(0x00008AE800000000 AS DateTime), CAST(0x00008B0400000000 AS DateTime), CAST(0x00008AEA00000000 AS DateTime), 2, CAST(27.94000 AS Decimal(19, 5)), N'Lehmanns Marktstand', N'Magazinweg 7', N'Frankfurt a.M.', N'null', N'60528', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10535, N'ANTON', 4, CAST(0x00008AE900000000 AS DateTime), CAST(0x00008B0500000000 AS DateTime), CAST(0x00008AF100000000 AS DateTime), 1, CAST(15.64000 AS Decimal(19, 5)), N'Antonio Moreno Taquería', N'Mataderos 2312', N'México D.F.', N'null', N'05023', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10536, N'LEHMS', 3, CAST(0x00008AEA00000000 AS DateTime), CAST(0x00008B0600000000 AS DateTime), CAST(0x00008B0100000000 AS DateTime), 2, CAST(58.88000 AS Decimal(19, 5)), N'Lehmanns Marktstand', N'Magazinweg 7', N'Frankfurt a.M.', N'null', N'60528', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10537, N'RICSU', 1, CAST(0x00008AEA00000000 AS DateTime), CAST(0x00008AF800000000 AS DateTime), CAST(0x00008AEF00000000 AS DateTime), 1, CAST(78.85000 AS Decimal(19, 5)), N'Richter Supermarkt', N'Starenweg 5', N'Genève', N'null', N'1204', N'Switzerland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10538, N'BSBEV', 9, CAST(0x00008AEB00000000 AS DateTime), CAST(0x00008B0700000000 AS DateTime), CAST(0x00008AEC00000000 AS DateTime), 3, CAST(4.87000 AS Decimal(19, 5)), N'B''s Beverages', N'Fauntleroy Circus', N'London', N'null', N'EC2 5NT', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10539, N'BSBEV', 6, CAST(0x00008AEC00000000 AS DateTime), CAST(0x00008B0800000000 AS DateTime), CAST(0x00008AF300000000 AS DateTime), 3, CAST(12.36000 AS Decimal(19, 5)), N'B''s Beverages', N'Fauntleroy Circus', N'London', N'null', N'EC2 5NT', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10540, N'QUICK', 3, CAST(0x00008AEF00000000 AS DateTime), CAST(0x00008B0B00000000 AS DateTime), CAST(0x00008B0800000000 AS DateTime), 3, CAST(1007.64000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10541, N'HANAR', 2, CAST(0x00008AEF00000000 AS DateTime), CAST(0x00008B0B00000000 AS DateTime), CAST(0x00008AF900000000 AS DateTime), 1, CAST(68.65000 AS Decimal(19, 5)), N'Hanari Carnes', N'Rua do Paço, 67', N'Rio de Janeiro', N'RJ', N'05454-876', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10542, N'KOENE', 1, CAST(0x00008AF000000000 AS DateTime), CAST(0x00008B0C00000000 AS DateTime), CAST(0x00008AF600000000 AS DateTime), 3, CAST(10.95000 AS Decimal(19, 5)), N'Königlich Essen', N'Maubelstr. 90', N'Brandenburg', N'null', N'14776', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10543, N'LILAS', 8, CAST(0x00008AF100000000 AS DateTime), CAST(0x00008B0D00000000 AS DateTime), CAST(0x00008AF300000000 AS DateTime), 2, CAST(48.17000 AS Decimal(19, 5)), N'LILA-Supermercado', N'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', N'Barquisimeto', N'Lara', N'3508', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10544, N'LONEP', 4, CAST(0x00008AF100000000 AS DateTime), CAST(0x00008B0D00000000 AS DateTime), CAST(0x00008AFA00000000 AS DateTime), 1, CAST(24.91000 AS Decimal(19, 5)), N'Lonesome Pine Restaurant', N'89 Chiaroscuro Rd.', N'Portland', N'OR', N'97219', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10545, N'LAZYK', 8, CAST(0x00008AF200000000 AS DateTime), CAST(0x00008B0E00000000 AS DateTime), CAST(0x00008B1500000000 AS DateTime), 2, CAST(11.92000 AS Decimal(19, 5)), N'Lazy K Kountry Store', N'12 Orchestra Terrace', N'Walla Walla', N'WA', N'99362', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10546, N'VICTE', 1, CAST(0x00008AF300000000 AS DateTime), CAST(0x00008B0F00000000 AS DateTime), CAST(0x00008AF700000000 AS DateTime), 3, CAST(194.72000 AS Decimal(19, 5)), N'Victuailles en stock', N'2, rue du Commerce', N'Lyon', N'null', N'69004', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10547, N'SEVES', 3, CAST(0x00008AF300000000 AS DateTime), CAST(0x00008B0F00000000 AS DateTime), CAST(0x00008AFD00000000 AS DateTime), 2, CAST(178.43000 AS Decimal(19, 5)), N'Seven Seas Imports', N'90 Wadhurst Rd.', N'London', N'null', N'OX15 4NB', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10548, N'TOMSP', 3, CAST(0x00008AF600000000 AS DateTime), CAST(0x00008B1200000000 AS DateTime), CAST(0x00008AFD00000000 AS DateTime), 2, CAST(1.43000 AS Decimal(19, 5)), N'Toms Spezialitäten', N'Luisenstr. 48', N'Münster', N'null', N'44087', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10549, N'QUICK', 5, CAST(0x00008AF700000000 AS DateTime), CAST(0x00008B0500000000 AS DateTime), CAST(0x00008AFA00000000 AS DateTime), 1, CAST(171.24000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10550, N'GODOS', 7, CAST(0x00008AF800000000 AS DateTime), CAST(0x00008B1400000000 AS DateTime), CAST(0x00008B0100000000 AS DateTime), 3, CAST(4.32000 AS Decimal(19, 5)), N'Godos Cocina Típica', N'C/ Romero, 33', N'Sevilla', N'null', N'41101', N'Spain')
GO
print 'Processed 300 total records'
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10551, N'FURIB', 4, CAST(0x00008AF800000000 AS DateTime), CAST(0x00008B2200000000 AS DateTime), CAST(0x00008B0100000000 AS DateTime), 3, CAST(72.95000 AS Decimal(19, 5)), N'Furia Bacalhau e Frutos do Mar', N'Jardim das rosas n. 32', N'Lisboa', N'null', N'1675', N'Portugal')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10552, N'HILAA', 2, CAST(0x00008AF900000000 AS DateTime), CAST(0x00008B1500000000 AS DateTime), CAST(0x00008B0000000000 AS DateTime), 1, CAST(83.22000 AS Decimal(19, 5)), N'HILARION-Abastos', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10553, N'WARTH', 2, CAST(0x00008AFA00000000 AS DateTime), CAST(0x00008B1600000000 AS DateTime), CAST(0x00008AFE00000000 AS DateTime), 2, CAST(149.49000 AS Decimal(19, 5)), N'Wartian Herkku', N'Torikatu 38', N'Oulu', N'null', N'90110', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10554, N'OTTIK', 4, CAST(0x00008AFA00000000 AS DateTime), CAST(0x00008B1600000000 AS DateTime), CAST(0x00008B0000000000 AS DateTime), 3, CAST(120.97000 AS Decimal(19, 5)), N'Ottilies Käseladen', N'Mehrheimerstr. 369', N'Köln', N'null', N'50739', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10555, N'SAVEA', 6, CAST(0x00008AFD00000000 AS DateTime), CAST(0x00008B1900000000 AS DateTime), CAST(0x00008AFF00000000 AS DateTime), 3, CAST(252.49000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10556, N'SIMOB', 2, CAST(0x00008AFE00000000 AS DateTime), CAST(0x00008B2800000000 AS DateTime), CAST(0x00008B0800000000 AS DateTime), 1, CAST(9.80000 AS Decimal(19, 5)), N'Simons bistro', N'Vinbæltet 34', N'Kobenhavn', N'null', N'1734', N'Denmark')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10557, N'LEHMS', 9, CAST(0x00008AFE00000000 AS DateTime), CAST(0x00008B0C00000000 AS DateTime), CAST(0x00008B0100000000 AS DateTime), 2, CAST(96.72000 AS Decimal(19, 5)), N'Lehmanns Marktstand', N'Magazinweg 7', N'Frankfurt a.M.', N'null', N'60528', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10558, N'AROUT', 1, CAST(0x00008AFF00000000 AS DateTime), CAST(0x00008B1B00000000 AS DateTime), CAST(0x00008B0500000000 AS DateTime), 2, CAST(72.97000 AS Decimal(19, 5)), N'Around the Horn', N'Brook Farm Stratford St. Mary', N'Colchester', N'Essex', N'CO7 6JX', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10559, N'BLONP', 6, CAST(0x00008B0000000000 AS DateTime), CAST(0x00008B1C00000000 AS DateTime), CAST(0x00008B0800000000 AS DateTime), 1, CAST(8.05000 AS Decimal(19, 5)), N'Blondel père et fils', N'24, place Kléber', N'Strasbourg', N'null', N'67000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10560, N'FRANK', 8, CAST(0x00008B0100000000 AS DateTime), CAST(0x00008B1D00000000 AS DateTime), CAST(0x00008B0400000000 AS DateTime), 1, CAST(36.65000 AS Decimal(19, 5)), N'Frankenversand', N'Berliner Platz 43', N'München', N'null', N'80805', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10561, N'FOLKO', 2, CAST(0x00008B0100000000 AS DateTime), CAST(0x00008B1D00000000 AS DateTime), CAST(0x00008B0400000000 AS DateTime), 2, CAST(242.21000 AS Decimal(19, 5)), N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', N'null', N'S-844 67', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10562, N'REGGC', 1, CAST(0x00008B0400000000 AS DateTime), CAST(0x00008B2000000000 AS DateTime), CAST(0x00008B0700000000 AS DateTime), 1, CAST(22.95000 AS Decimal(19, 5)), N'Reggiani Caseifici', N'Strada Provinciale 124', N'Reggio Emilia', N'null', N'42100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10563, N'RICAR', 2, CAST(0x00008B0500000000 AS DateTime), CAST(0x00008B2F00000000 AS DateTime), CAST(0x00008B1300000000 AS DateTime), 2, CAST(60.43000 AS Decimal(19, 5)), N'Ricardo Adocicados', N'Av. Copacabana, 267', N'Rio de Janeiro', N'RJ', N'02389-890', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10564, N'RATTC', 4, CAST(0x00008B0500000000 AS DateTime), CAST(0x00008B2100000000 AS DateTime), CAST(0x00008B0B00000000 AS DateTime), 3, CAST(13.75000 AS Decimal(19, 5)), N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10565, N'MEREP', 8, CAST(0x00008B0600000000 AS DateTime), CAST(0x00008B2200000000 AS DateTime), CAST(0x00008B0D00000000 AS DateTime), 2, CAST(7.15000 AS Decimal(19, 5)), N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10566, N'BLONP', 9, CAST(0x00008B0700000000 AS DateTime), CAST(0x00008B2300000000 AS DateTime), CAST(0x00008B0D00000000 AS DateTime), 1, CAST(88.40000 AS Decimal(19, 5)), N'Blondel père et fils', N'24, place Kléber', N'Strasbourg', N'null', N'67000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10567, N'HUNGO', 1, CAST(0x00008B0700000000 AS DateTime), CAST(0x00008B2300000000 AS DateTime), CAST(0x00008B0C00000000 AS DateTime), 1, CAST(33.97000 AS Decimal(19, 5)), N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', N'null', N'Ireland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10568, N'GALED', 3, CAST(0x00008B0800000000 AS DateTime), CAST(0x00008B2400000000 AS DateTime), CAST(0x00008B2200000000 AS DateTime), 3, CAST(6.54000 AS Decimal(19, 5)), N'Galería del gastronómo', N'Rambla de Cataluña, 23', N'Barcelona', N'null', N'8022', N'Spain')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10569, N'RATTC', 5, CAST(0x00008B0B00000000 AS DateTime), CAST(0x00008B2700000000 AS DateTime), CAST(0x00008B2400000000 AS DateTime), 1, CAST(58.98000 AS Decimal(19, 5)), N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10570, N'MEREP', 3, CAST(0x00008B0C00000000 AS DateTime), CAST(0x00008B2800000000 AS DateTime), CAST(0x00008B0E00000000 AS DateTime), 3, CAST(188.99000 AS Decimal(19, 5)), N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10571, N'ERNSH', 8, CAST(0x00008B0C00000000 AS DateTime), CAST(0x00008B3600000000 AS DateTime), CAST(0x00008B1D00000000 AS DateTime), 3, CAST(26.06000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10572, N'BERGS', 3, CAST(0x00008B0D00000000 AS DateTime), CAST(0x00008B2900000000 AS DateTime), CAST(0x00008B1400000000 AS DateTime), 2, CAST(116.43000 AS Decimal(19, 5)), N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', N'null', N'S-958 22', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10573, N'ANTON', 7, CAST(0x00008B0E00000000 AS DateTime), CAST(0x00008B2A00000000 AS DateTime), CAST(0x00008B0F00000000 AS DateTime), 3, CAST(84.84000 AS Decimal(19, 5)), N'Antonio Moreno Taquería', N'Mataderos 2312', N'México D.F.', N'null', N'05023', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10574, N'TRAIH', 4, CAST(0x00008B0E00000000 AS DateTime), CAST(0x00008B2A00000000 AS DateTime), CAST(0x00008B1900000000 AS DateTime), 2, CAST(37.60000 AS Decimal(19, 5)), N'Trail''s Head Gourmet Provisioners', N'722 DaVinci Blvd.', N'Kirkland', N'WA', N'98034', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10575, N'MORGK', 5, CAST(0x00008B0F00000000 AS DateTime), CAST(0x00008B1D00000000 AS DateTime), CAST(0x00008B1900000000 AS DateTime), 1, CAST(127.34000 AS Decimal(19, 5)), N'Morgenstern Gesundkost', N'Heerstr. 22', N'Leipzig', N'null', N'04179', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10576, N'TORTU', 3, CAST(0x00008B1200000000 AS DateTime), CAST(0x00008B2000000000 AS DateTime), CAST(0x00008B1900000000 AS DateTime), 3, CAST(18.56000 AS Decimal(19, 5)), N'Tortuga Restaurante', N'Avda. Azteca 123', N'México D.F.', N'null', N'05033', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10577, N'TRAIH', 9, CAST(0x00008B1200000000 AS DateTime), CAST(0x00008B3C00000000 AS DateTime), CAST(0x00008B1900000000 AS DateTime), 2, CAST(25.41000 AS Decimal(19, 5)), N'Trail''s Head Gourmet Provisioners', N'722 DaVinci Blvd.', N'Kirkland', N'WA', N'98034', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10578, N'BSBEV', 4, CAST(0x00008B1300000000 AS DateTime), CAST(0x00008B2F00000000 AS DateTime), CAST(0x00008B3200000000 AS DateTime), 3, CAST(29.60000 AS Decimal(19, 5)), N'B''s Beverages', N'Fauntleroy Circus', N'London', N'null', N'EC2 5NT', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10579, N'LETSS', 1, CAST(0x00008B1400000000 AS DateTime), CAST(0x00008B3000000000 AS DateTime), CAST(0x00008B1D00000000 AS DateTime), 2, CAST(13.73000 AS Decimal(19, 5)), N'Let''s Stop N Shop', N'87 Polk St. Suite 5', N'San Francisco', N'CA', N'94117', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10580, N'OTTIK', 4, CAST(0x00008B1500000000 AS DateTime), CAST(0x00008B3100000000 AS DateTime), CAST(0x00008B1A00000000 AS DateTime), 3, CAST(75.89000 AS Decimal(19, 5)), N'Ottilies Käseladen', N'Mehrheimerstr. 369', N'Köln', N'null', N'50739', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10581, N'FAMIA', 3, CAST(0x00008B1500000000 AS DateTime), CAST(0x00008B3100000000 AS DateTime), CAST(0x00008B1B00000000 AS DateTime), 1, CAST(3.01000 AS Decimal(19, 5)), N'Familia Arquibaldo', N'Rua Orós, 92', N'Sao Paulo', N'SP', N'05442-030', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10582, N'BLAUS', 3, CAST(0x00008B1600000000 AS DateTime), CAST(0x00008B3200000000 AS DateTime), CAST(0x00008B2700000000 AS DateTime), 2, CAST(27.71000 AS Decimal(19, 5)), N'Blauer See Delikatessen', N'Forsterstr. 57', N'Mannheim', N'null', N'68306', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10583, N'WARTH', 2, CAST(0x00008B1900000000 AS DateTime), CAST(0x00008B3500000000 AS DateTime), CAST(0x00008B1D00000000 AS DateTime), 2, CAST(7.28000 AS Decimal(19, 5)), N'Wartian Herkku', N'Torikatu 38', N'Oulu', N'null', N'90110', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10584, N'BLONP', 4, CAST(0x00008B1900000000 AS DateTime), CAST(0x00008B3500000000 AS DateTime), CAST(0x00008B1D00000000 AS DateTime), 1, CAST(59.14000 AS Decimal(19, 5)), N'Blondel père et fils', N'24, place Kléber', N'Strasbourg', N'null', N'67000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10585, N'WELLI', 7, CAST(0x00008B1A00000000 AS DateTime), CAST(0x00008B3600000000 AS DateTime), CAST(0x00008B2300000000 AS DateTime), 1, CAST(13.41000 AS Decimal(19, 5)), N'Wellington Importadora', N'Rua do Mercado, 12', N'Resende', N'SP', N'08737-363', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10586, N'REGGC', 9, CAST(0x00008B1B00000000 AS DateTime), CAST(0x00008B3700000000 AS DateTime), CAST(0x00008B2200000000 AS DateTime), 1, CAST(0.48000 AS Decimal(19, 5)), N'Reggiani Caseifici', N'Strada Provinciale 124', N'Reggio Emilia', N'null', N'42100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10587, N'QUEDE', 1, CAST(0x00008B1B00000000 AS DateTime), CAST(0x00008B3700000000 AS DateTime), CAST(0x00008B2200000000 AS DateTime), 1, CAST(62.52000 AS Decimal(19, 5)), N'Que Delícia', N'Rua da Panificadora, 12', N'Rio de Janeiro', N'RJ', N'02389-673', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10588, N'QUICK', 2, CAST(0x00008B1C00000000 AS DateTime), CAST(0x00008B3800000000 AS DateTime), CAST(0x00008B2300000000 AS DateTime), 3, CAST(194.67000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10589, N'GREAL', 8, CAST(0x00008B1D00000000 AS DateTime), CAST(0x00008B3900000000 AS DateTime), CAST(0x00008B2700000000 AS DateTime), 2, CAST(4.42000 AS Decimal(19, 5)), N'Great Lakes Food Market', N'2732 Baker Blvd.', N'Eugene', N'OR', N'97403', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10590, N'MEREP', 4, CAST(0x00008B2000000000 AS DateTime), CAST(0x00008B3C00000000 AS DateTime), CAST(0x00008B2700000000 AS DateTime), 3, CAST(44.77000 AS Decimal(19, 5)), N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10591, N'VAFFE', 1, CAST(0x00008B2000000000 AS DateTime), CAST(0x00008B2E00000000 AS DateTime), CAST(0x00008B2900000000 AS DateTime), 1, CAST(55.92000 AS Decimal(19, 5)), N'Vaffeljernet', N'Smagsloget 45', N'Århus', N'null', N'8200', N'Denmark')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10592, N'LEHMS', 3, CAST(0x00008B2100000000 AS DateTime), CAST(0x00008B3D00000000 AS DateTime), CAST(0x00008B2900000000 AS DateTime), 1, CAST(32.10000 AS Decimal(19, 5)), N'Lehmanns Marktstand', N'Magazinweg 7', N'Frankfurt a.M.', N'null', N'60528', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10593, N'LEHMS', 7, CAST(0x00008B2200000000 AS DateTime), CAST(0x00008B3E00000000 AS DateTime), CAST(0x00008B4500000000 AS DateTime), 2, CAST(174.20000 AS Decimal(19, 5)), N'Lehmanns Marktstand', N'Magazinweg 7', N'Frankfurt a.M.', N'null', N'60528', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10594, N'OLDWO', 3, CAST(0x00008B2200000000 AS DateTime), CAST(0x00008B3E00000000 AS DateTime), CAST(0x00008B2900000000 AS DateTime), 2, CAST(5.24000 AS Decimal(19, 5)), N'Old World Delicatessen', N'2743 Bering St.', N'Anchorage', N'AK', N'99508', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10595, N'ERNSH', 2, CAST(0x00008B2300000000 AS DateTime), CAST(0x00008B3F00000000 AS DateTime), CAST(0x00008B2700000000 AS DateTime), 1, CAST(96.78000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10596, N'WHITC', 8, CAST(0x00008B2400000000 AS DateTime), CAST(0x00008B4000000000 AS DateTime), CAST(0x00008B4400000000 AS DateTime), 1, CAST(16.34000 AS Decimal(19, 5)), N'White Clover Markets', N'1029 - 12th Ave. S.', N'Seattle', N'WA', N'98124', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10597, N'PICCO', 7, CAST(0x00008B2400000000 AS DateTime), CAST(0x00008B4000000000 AS DateTime), CAST(0x00008B2B00000000 AS DateTime), 3, CAST(35.12000 AS Decimal(19, 5)), N'Piccolo und mehr', N'Geislweg 14', N'Salzburg', N'null', N'5020', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10598, N'RATTC', 1, CAST(0x00008B2700000000 AS DateTime), CAST(0x00008B4300000000 AS DateTime), CAST(0x00008B2B00000000 AS DateTime), 3, CAST(44.42000 AS Decimal(19, 5)), N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10599, N'BSBEV', 6, CAST(0x00008B2800000000 AS DateTime), CAST(0x00008B5200000000 AS DateTime), CAST(0x00008B2E00000000 AS DateTime), 3, CAST(29.98000 AS Decimal(19, 5)), N'B''s Beverages', N'Fauntleroy Circus', N'London', N'null', N'EC2 5NT', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10600, N'HUNGC', 4, CAST(0x00008B2900000000 AS DateTime), CAST(0x00008B4500000000 AS DateTime), CAST(0x00008B2E00000000 AS DateTime), 1, CAST(45.13000 AS Decimal(19, 5)), N'Hungry Coyote Import Store', N'City Center Plaza 516 Main St.', N'Elgin', N'OR', N'97827', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10601, N'HILAA', 7, CAST(0x00008B2900000000 AS DateTime), CAST(0x00008B5300000000 AS DateTime), CAST(0x00008B2F00000000 AS DateTime), 1, CAST(58.30000 AS Decimal(19, 5)), N'HILARION-Abastos', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10602, N'VAFFE', 8, CAST(0x00008B2A00000000 AS DateTime), CAST(0x00008B4600000000 AS DateTime), CAST(0x00008B2F00000000 AS DateTime), 2, CAST(2.92000 AS Decimal(19, 5)), N'Vaffeljernet', N'Smagsloget 45', N'Århus', N'null', N'8200', N'Denmark')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10603, N'SAVEA', 8, CAST(0x00008B2B00000000 AS DateTime), CAST(0x00008B4700000000 AS DateTime), CAST(0x00008B4000000000 AS DateTime), 2, CAST(48.77000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10604, N'FURIB', 1, CAST(0x00008B2B00000000 AS DateTime), CAST(0x00008B4700000000 AS DateTime), CAST(0x00008B3600000000 AS DateTime), 1, CAST(7.46000 AS Decimal(19, 5)), N'Furia Bacalhau e Frutos do Mar', N'Jardim das rosas n. 32', N'Lisboa', N'null', N'1675', N'Portugal')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10605, N'MEREP', 1, CAST(0x00008B2E00000000 AS DateTime), CAST(0x00008B4A00000000 AS DateTime), CAST(0x00008B3600000000 AS DateTime), 2, CAST(379.13000 AS Decimal(19, 5)), N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10606, N'TRADH', 4, CAST(0x00008B2F00000000 AS DateTime), CAST(0x00008B4B00000000 AS DateTime), CAST(0x00008B3800000000 AS DateTime), 3, CAST(79.40000 AS Decimal(19, 5)), N'Tradiçao Hipermercados', N'Av. Inês de Castro, 414', N'Sao Paulo', N'SP', N'05634-030', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10607, N'SAVEA', 5, CAST(0x00008B2F00000000 AS DateTime), CAST(0x00008B4B00000000 AS DateTime), CAST(0x00008B3200000000 AS DateTime), 1, CAST(200.24000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10608, N'TOMSP', 4, CAST(0x00008B3000000000 AS DateTime), CAST(0x00008B4C00000000 AS DateTime), CAST(0x00008B3900000000 AS DateTime), 2, CAST(27.79000 AS Decimal(19, 5)), N'Toms Spezialitäten', N'Luisenstr. 48', N'Münster', N'null', N'44087', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10609, N'DUMON', 7, CAST(0x00008B3100000000 AS DateTime), CAST(0x00008B4D00000000 AS DateTime), CAST(0x00008B3700000000 AS DateTime), 2, CAST(1.85000 AS Decimal(19, 5)), N'Du monde entier', N'67, rue des Cinquante Otages', N'Nantes', N'null', N'44000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10610, N'LAMAI', 8, CAST(0x00008B3200000000 AS DateTime), CAST(0x00008B4E00000000 AS DateTime), CAST(0x00008B3E00000000 AS DateTime), 1, CAST(26.78000 AS Decimal(19, 5)), N'La maison d''Asie', N'1 rue Alsace-Lorraine', N'Toulouse', N'null', N'31000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10611, N'WOLZA', 6, CAST(0x00008B3200000000 AS DateTime), CAST(0x00008B4E00000000 AS DateTime), CAST(0x00008B3900000000 AS DateTime), 2, CAST(80.65000 AS Decimal(19, 5)), N'Wolski Zajazd', N'ul. Filtrowa 68', N'Warszawa', N'null', N'01-012', N'Poland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10612, N'SAVEA', 1, CAST(0x00008B3500000000 AS DateTime), CAST(0x00008B5100000000 AS DateTime), CAST(0x00008B3900000000 AS DateTime), 2, CAST(544.08000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10613, N'HILAA', 4, CAST(0x00008B3600000000 AS DateTime), CAST(0x00008B5200000000 AS DateTime), CAST(0x00008B3900000000 AS DateTime), 2, CAST(8.11000 AS Decimal(19, 5)), N'HILARION-Abastos', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10614, N'BLAUS', 8, CAST(0x00008B3600000000 AS DateTime), CAST(0x00008B5200000000 AS DateTime), CAST(0x00008B3900000000 AS DateTime), 3, CAST(1.93000 AS Decimal(19, 5)), N'Blauer See Delikatessen', N'Forsterstr. 57', N'Mannheim', N'null', N'68306', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10615, N'WILMK', 2, CAST(0x00008B3700000000 AS DateTime), CAST(0x00008B5300000000 AS DateTime), CAST(0x00008B3E00000000 AS DateTime), 3, CAST(0.75000 AS Decimal(19, 5)), N'Wilman Kala', N'Keskuskatu 45', N'Helsinki', N'null', N'21240', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10616, N'GREAL', 1, CAST(0x00008B3800000000 AS DateTime), CAST(0x00008B5400000000 AS DateTime), CAST(0x00008B3D00000000 AS DateTime), 2, CAST(116.53000 AS Decimal(19, 5)), N'Great Lakes Food Market', N'2732 Baker Blvd.', N'Eugene', N'OR', N'97403', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10617, N'GREAL', 4, CAST(0x00008B3800000000 AS DateTime), CAST(0x00008B5400000000 AS DateTime), CAST(0x00008B3C00000000 AS DateTime), 2, CAST(18.53000 AS Decimal(19, 5)), N'Great Lakes Food Market', N'2732 Baker Blvd.', N'Eugene', N'OR', N'97403', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10618, N'MEREP', 1, CAST(0x00008B3900000000 AS DateTime), CAST(0x00008B6300000000 AS DateTime), CAST(0x00008B4000000000 AS DateTime), 1, CAST(154.68000 AS Decimal(19, 5)), N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10619, N'MEREP', 3, CAST(0x00008B3C00000000 AS DateTime), CAST(0x00008B5800000000 AS DateTime), CAST(0x00008B3F00000000 AS DateTime), 3, CAST(91.05000 AS Decimal(19, 5)), N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10620, N'LAUGB', 2, CAST(0x00008B3D00000000 AS DateTime), CAST(0x00008B5900000000 AS DateTime), CAST(0x00008B4600000000 AS DateTime), 3, CAST(0.94000 AS Decimal(19, 5)), N'Laughing Bacchus Wine Cellars', N'2319 Elm St.', N'Vancouver', N'BC', N'V3F 2K1', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10621, N'ISLAT', 4, CAST(0x00008B3D00000000 AS DateTime), CAST(0x00008B5900000000 AS DateTime), CAST(0x00008B4300000000 AS DateTime), 2, CAST(23.73000 AS Decimal(19, 5)), N'Island Trading', N'Garden House Crowther Way', N'Cowes', N'Isle of Wight', N'PO31 7PJ', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10622, N'RICAR', 4, CAST(0x00008B3E00000000 AS DateTime), CAST(0x00008B5A00000000 AS DateTime), CAST(0x00008B4300000000 AS DateTime), 3, CAST(50.97000 AS Decimal(19, 5)), N'Ricardo Adocicados', N'Av. Copacabana, 267', N'Rio de Janeiro', N'RJ', N'02389-890', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10623, N'FRANK', 8, CAST(0x00008B3F00000000 AS DateTime), CAST(0x00008B5B00000000 AS DateTime), CAST(0x00008B4400000000 AS DateTime), 2, CAST(97.18000 AS Decimal(19, 5)), N'Frankenversand', N'Berliner Platz 43', N'München', N'null', N'80805', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10624, N'THECR', 4, CAST(0x00008B3F00000000 AS DateTime), CAST(0x00008B5B00000000 AS DateTime), CAST(0x00008B4B00000000 AS DateTime), 2, CAST(94.80000 AS Decimal(19, 5)), N'The Cracker Box', N'55 Grizzly Peak Rd.', N'Butte', N'MT', N'59801', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10625, N'ANATR', 3, CAST(0x00008B4000000000 AS DateTime), CAST(0x00008B5C00000000 AS DateTime), CAST(0x00008B4600000000 AS DateTime), 1, CAST(43.90000 AS Decimal(19, 5)), N'Ana Trujillo Emparedados y helados', N'Avda. de la Constitución 2222', N'México D.F.', N'null', N'05021', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10626, N'BERGS', 1, CAST(0x00008B4300000000 AS DateTime), CAST(0x00008B5F00000000 AS DateTime), CAST(0x00008B4C00000000 AS DateTime), 2, CAST(138.69000 AS Decimal(19, 5)), N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', N'null', N'S-958 22', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10627, N'SAVEA', 8, CAST(0x00008B4300000000 AS DateTime), CAST(0x00008B6D00000000 AS DateTime), CAST(0x00008B4D00000000 AS DateTime), 3, CAST(107.46000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10628, N'BLONP', 4, CAST(0x00008B4400000000 AS DateTime), CAST(0x00008B6000000000 AS DateTime), CAST(0x00008B4C00000000 AS DateTime), 3, CAST(30.36000 AS Decimal(19, 5)), N'Blondel père et fils', N'24, place Kléber', N'Strasbourg', N'null', N'67000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10629, N'GODOS', 4, CAST(0x00008B4400000000 AS DateTime), CAST(0x00008B6000000000 AS DateTime), CAST(0x00008B4C00000000 AS DateTime), 3, CAST(85.46000 AS Decimal(19, 5)), N'Godos Cocina Típica', N'C/ Romero, 33', N'Sevilla', N'null', N'41101', N'Spain')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10630, N'KOENE', 1, CAST(0x00008B4500000000 AS DateTime), CAST(0x00008B6100000000 AS DateTime), CAST(0x00008B4B00000000 AS DateTime), 2, CAST(32.35000 AS Decimal(19, 5)), N'Königlich Essen', N'Maubelstr. 90', N'Brandenburg', N'null', N'14776', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10631, N'LAMAI', 8, CAST(0x00008B4600000000 AS DateTime), CAST(0x00008B6200000000 AS DateTime), CAST(0x00008B4700000000 AS DateTime), 1, CAST(0.87000 AS Decimal(19, 5)), N'La maison d''Asie', N'1 rue Alsace-Lorraine', N'Toulouse', N'null', N'31000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10632, N'WANDK', 8, CAST(0x00008B4600000000 AS DateTime), CAST(0x00008B6200000000 AS DateTime), CAST(0x00008B4B00000000 AS DateTime), 1, CAST(41.38000 AS Decimal(19, 5)), N'Die Wandernde Kuh', N'Adenauerallee 900', N'Stuttgart', N'null', N'70563', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10633, N'ERNSH', 7, CAST(0x00008B4700000000 AS DateTime), CAST(0x00008B6300000000 AS DateTime), CAST(0x00008B4A00000000 AS DateTime), 3, CAST(477.90000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10634, N'FOLIG', 4, CAST(0x00008B4700000000 AS DateTime), CAST(0x00008B6300000000 AS DateTime), CAST(0x00008B4D00000000 AS DateTime), 3, CAST(487.38000 AS Decimal(19, 5)), N'Folies gourmandes', N'184, chaussée de Tournai', N'Lille', N'null', N'59000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10635, N'MAGAA', 8, CAST(0x00008B4A00000000 AS DateTime), CAST(0x00008B6600000000 AS DateTime), CAST(0x00008B4D00000000 AS DateTime), 3, CAST(47.46000 AS Decimal(19, 5)), N'Magazzini Alimentari Riuniti', N'Via Ludovico il Moro 22', N'Bergamo', N'null', N'24100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10636, N'WARTH', 4, CAST(0x00008B4B00000000 AS DateTime), CAST(0x00008B6700000000 AS DateTime), CAST(0x00008B5200000000 AS DateTime), 1, CAST(1.15000 AS Decimal(19, 5)), N'Wartian Herkku', N'Torikatu 38', N'Oulu', N'null', N'90110', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10637, N'QUEEN', 6, CAST(0x00008B4B00000000 AS DateTime), CAST(0x00008B6700000000 AS DateTime), CAST(0x00008B5200000000 AS DateTime), 1, CAST(201.29000 AS Decimal(19, 5)), N'Queen Cozinha', N'Alameda dos Canàrios, 891', N'Sao Paulo', N'SP', N'05487-020', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10638, N'LINOD', 3, CAST(0x00008B4C00000000 AS DateTime), CAST(0x00008B6800000000 AS DateTime), CAST(0x00008B5800000000 AS DateTime), 1, CAST(158.44000 AS Decimal(19, 5)), N'LINO-Delicateses', N'Ave. 5 de Mayo Porlamar', N'I. de Margarita', N'Nueva Esparta', N'4980', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10639, N'SANTG', 7, CAST(0x00008B4C00000000 AS DateTime), CAST(0x00008B6800000000 AS DateTime), CAST(0x00008B5300000000 AS DateTime), 3, CAST(38.64000 AS Decimal(19, 5)), N'Santé Gourmet', N'Erling Skakkes gate 78', N'Stavern', N'null', N'4110', N'Norway')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10640, N'WANDK', 4, CAST(0x00008B4D00000000 AS DateTime), CAST(0x00008B6900000000 AS DateTime), CAST(0x00008B5400000000 AS DateTime), 1, CAST(23.55000 AS Decimal(19, 5)), N'Die Wandernde Kuh', N'Adenauerallee 900', N'Stuttgart', N'null', N'70563', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10641, N'HILAA', 4, CAST(0x00008B4E00000000 AS DateTime), CAST(0x00008B6A00000000 AS DateTime), CAST(0x00008B5200000000 AS DateTime), 2, CAST(179.61000 AS Decimal(19, 5)), N'HILARION-Abastos', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10642, N'SIMOB', 7, CAST(0x00008B4E00000000 AS DateTime), CAST(0x00008B6A00000000 AS DateTime), CAST(0x00008B5C00000000 AS DateTime), 3, CAST(41.89000 AS Decimal(19, 5)), N'Simons bistro', N'Vinbæltet 34', N'Kobenhavn', N'null', N'1734', N'Denmark')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10643, N'ALFKI', 6, CAST(0x00008B5100000000 AS DateTime), CAST(0x00008B6D00000000 AS DateTime), CAST(0x00008B5900000000 AS DateTime), 1, CAST(29.46000 AS Decimal(19, 5)), N'Alfreds Futterkiste', N'Obere Str. 57', N'Berlin', N'null', N'12209', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10644, N'WELLI', 3, CAST(0x00008B5100000000 AS DateTime), CAST(0x00008B6D00000000 AS DateTime), CAST(0x00008B5800000000 AS DateTime), 2, CAST(0.14000 AS Decimal(19, 5)), N'Wellington Importadora', N'Rua do Mercado, 12', N'Resende', N'SP', N'08737-363', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10645, N'HANAR', 4, CAST(0x00008B5200000000 AS DateTime), CAST(0x00008B6E00000000 AS DateTime), CAST(0x00008B5900000000 AS DateTime), 1, CAST(12.41000 AS Decimal(19, 5)), N'Hanari Carnes', N'Rua do Paço, 67', N'Rio de Janeiro', N'RJ', N'05454-876', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10646, N'HUNGO', 9, CAST(0x00008B5300000000 AS DateTime), CAST(0x00008B7D00000000 AS DateTime), CAST(0x00008B5A00000000 AS DateTime), 3, CAST(142.33000 AS Decimal(19, 5)), N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', N'null', N'Ireland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10647, N'QUEDE', 4, CAST(0x00008B5300000000 AS DateTime), CAST(0x00008B6100000000 AS DateTime), CAST(0x00008B5A00000000 AS DateTime), 2, CAST(45.54000 AS Decimal(19, 5)), N'Que Delícia', N'Rua da Panificadora, 12', N'Rio de Janeiro', N'RJ', N'02389-673', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10648, N'RICAR', 5, CAST(0x00008B5400000000 AS DateTime), CAST(0x00008B7E00000000 AS DateTime), CAST(0x00008B6000000000 AS DateTime), 2, CAST(14.25000 AS Decimal(19, 5)), N'Ricardo Adocicados', N'Av. Copacabana, 267', N'Rio de Janeiro', N'RJ', N'02389-890', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10649, N'MAISD', 5, CAST(0x00008B5400000000 AS DateTime), CAST(0x00008B7000000000 AS DateTime), CAST(0x00008B5500000000 AS DateTime), 3, CAST(6.20000 AS Decimal(19, 5)), N'Maison Dewey', N'Rue Joseph-Bens 532', N'Bruxelles', N'null', N'B-1180', N'Belgium')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10650, N'FAMIA', 5, CAST(0x00008B5500000000 AS DateTime), CAST(0x00008B7100000000 AS DateTime), CAST(0x00008B5A00000000 AS DateTime), 3, CAST(176.81000 AS Decimal(19, 5)), N'Familia Arquibaldo', N'Rua Orós, 92', N'Sao Paulo', N'SP', N'05442-030', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10651, N'WANDK', 8, CAST(0x00008B5800000000 AS DateTime), CAST(0x00008B7400000000 AS DateTime), CAST(0x00008B6200000000 AS DateTime), 2, CAST(20.60000 AS Decimal(19, 5)), N'Die Wandernde Kuh', N'Adenauerallee 900', N'Stuttgart', N'null', N'70563', N'Germany')
GO
print 'Processed 400 total records'
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10652, N'GOURL', 4, CAST(0x00008B5800000000 AS DateTime), CAST(0x00008B7400000000 AS DateTime), CAST(0x00008B5F00000000 AS DateTime), 2, CAST(7.14000 AS Decimal(19, 5)), N'Gourmet Lanchonetes', N'Av. Brasil, 442', N'Campinas', N'SP', N'04876-786', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10653, N'FRANK', 1, CAST(0x00008B5900000000 AS DateTime), CAST(0x00008B7500000000 AS DateTime), CAST(0x00008B6A00000000 AS DateTime), 1, CAST(93.25000 AS Decimal(19, 5)), N'Frankenversand', N'Berliner Platz 43', N'München', N'null', N'80805', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10654, N'BERGS', 5, CAST(0x00008B5900000000 AS DateTime), CAST(0x00008B7500000000 AS DateTime), CAST(0x00008B6200000000 AS DateTime), 1, CAST(55.26000 AS Decimal(19, 5)), N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', N'null', N'S-958 22', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10655, N'REGGC', 1, CAST(0x00008B5A00000000 AS DateTime), CAST(0x00008B7600000000 AS DateTime), CAST(0x00008B6200000000 AS DateTime), 2, CAST(4.41000 AS Decimal(19, 5)), N'Reggiani Caseifici', N'Strada Provinciale 124', N'Reggio Emilia', N'null', N'42100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10656, N'GREAL', 6, CAST(0x00008B5B00000000 AS DateTime), CAST(0x00008B7700000000 AS DateTime), CAST(0x00008B6100000000 AS DateTime), 1, CAST(57.15000 AS Decimal(19, 5)), N'Great Lakes Food Market', N'2732 Baker Blvd.', N'Eugene', N'OR', N'97403', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10657, N'SAVEA', 2, CAST(0x00008B5B00000000 AS DateTime), CAST(0x00008B7700000000 AS DateTime), CAST(0x00008B6600000000 AS DateTime), 2, CAST(352.69000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10658, N'QUICK', 4, CAST(0x00008B5C00000000 AS DateTime), CAST(0x00008B7800000000 AS DateTime), CAST(0x00008B5F00000000 AS DateTime), 1, CAST(364.15000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10659, N'QUEEN', 7, CAST(0x00008B5C00000000 AS DateTime), CAST(0x00008B7800000000 AS DateTime), CAST(0x00008B6100000000 AS DateTime), 2, CAST(105.81000 AS Decimal(19, 5)), N'Queen Cozinha', N'Alameda dos Canàrios, 891', N'Sao Paulo', N'SP', N'05487-020', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10660, N'HUNGC', 8, CAST(0x00008B5F00000000 AS DateTime), CAST(0x00008B7B00000000 AS DateTime), CAST(0x00008B8400000000 AS DateTime), 1, CAST(111.29000 AS Decimal(19, 5)), N'Hungry Coyote Import Store', N'City Center Plaza 516 Main St.', N'Elgin', N'OR', N'97827', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10661, N'HUNGO', 7, CAST(0x00008B6000000000 AS DateTime), CAST(0x00008B7C00000000 AS DateTime), CAST(0x00008B6600000000 AS DateTime), 3, CAST(17.55000 AS Decimal(19, 5)), N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', N'null', N'Ireland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10662, N'LONEP', 3, CAST(0x00008B6000000000 AS DateTime), CAST(0x00008B7C00000000 AS DateTime), CAST(0x00008B6900000000 AS DateTime), 2, CAST(1.28000 AS Decimal(19, 5)), N'Lonesome Pine Restaurant', N'89 Chiaroscuro Rd.', N'Portland', N'OR', N'97219', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10663, N'BONAP', 2, CAST(0x00008B6100000000 AS DateTime), CAST(0x00008B6F00000000 AS DateTime), CAST(0x00008B7800000000 AS DateTime), 2, CAST(113.15000 AS Decimal(19, 5)), N'Bon app''', N'12, rue des Bouchers', N'Marseille', N'null', N'13008', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10664, N'FURIB', 1, CAST(0x00008B6100000000 AS DateTime), CAST(0x00008B7D00000000 AS DateTime), CAST(0x00008B6A00000000 AS DateTime), 3, CAST(1.27000 AS Decimal(19, 5)), N'Furia Bacalhau e Frutos do Mar', N'Jardim das rosas n. 32', N'Lisboa', N'null', N'1675', N'Portugal')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10665, N'LONEP', 1, CAST(0x00008B6200000000 AS DateTime), CAST(0x00008B7E00000000 AS DateTime), CAST(0x00008B6800000000 AS DateTime), 2, CAST(26.31000 AS Decimal(19, 5)), N'Lonesome Pine Restaurant', N'89 Chiaroscuro Rd.', N'Portland', N'OR', N'97219', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10666, N'RICSU', 7, CAST(0x00008B6300000000 AS DateTime), CAST(0x00008B7F00000000 AS DateTime), CAST(0x00008B6D00000000 AS DateTime), 2, CAST(232.42000 AS Decimal(19, 5)), N'Richter Supermarkt', N'Starenweg 5', N'Genève', N'null', N'1204', N'Switzerland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10667, N'ERNSH', 7, CAST(0x00008B6300000000 AS DateTime), CAST(0x00008B7F00000000 AS DateTime), CAST(0x00008B6A00000000 AS DateTime), 1, CAST(78.09000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10668, N'WANDK', 1, CAST(0x00008B6600000000 AS DateTime), CAST(0x00008B8200000000 AS DateTime), CAST(0x00008B6E00000000 AS DateTime), 2, CAST(47.22000 AS Decimal(19, 5)), N'Die Wandernde Kuh', N'Adenauerallee 900', N'Stuttgart', N'null', N'70563', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10669, N'SIMOB', 2, CAST(0x00008B6600000000 AS DateTime), CAST(0x00008B8200000000 AS DateTime), CAST(0x00008B6D00000000 AS DateTime), 1, CAST(24.39000 AS Decimal(19, 5)), N'Simons bistro', N'Vinbæltet 34', N'Kobenhavn', N'null', N'1734', N'Denmark')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10670, N'FRANK', 4, CAST(0x00008B6700000000 AS DateTime), CAST(0x00008B8300000000 AS DateTime), CAST(0x00008B6900000000 AS DateTime), 1, CAST(203.48000 AS Decimal(19, 5)), N'Frankenversand', N'Berliner Platz 43', N'München', N'null', N'80805', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10671, N'FRANR', 1, CAST(0x00008B6800000000 AS DateTime), CAST(0x00008B8400000000 AS DateTime), CAST(0x00008B6F00000000 AS DateTime), 1, CAST(30.34000 AS Decimal(19, 5)), N'France restauration', N'54, rue Royale', N'Nantes', N'null', N'44000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10672, N'BERGS', 9, CAST(0x00008B6800000000 AS DateTime), CAST(0x00008B7600000000 AS DateTime), CAST(0x00008B7100000000 AS DateTime), 2, CAST(95.75000 AS Decimal(19, 5)), N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', N'null', N'S-958 22', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10673, N'WILMK', 2, CAST(0x00008B6900000000 AS DateTime), CAST(0x00008B8500000000 AS DateTime), CAST(0x00008B6A00000000 AS DateTime), 1, CAST(22.76000 AS Decimal(19, 5)), N'Wilman Kala', N'Keskuskatu 45', N'Helsinki', N'null', N'21240', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10674, N'ISLAT', 4, CAST(0x00008B6900000000 AS DateTime), CAST(0x00008B8500000000 AS DateTime), CAST(0x00008B7500000000 AS DateTime), 2, CAST(0.90000 AS Decimal(19, 5)), N'Island Trading', N'Garden House Crowther Way', N'Cowes', N'Isle of Wight', N'PO31 7PJ', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10675, N'FRANK', 5, CAST(0x00008B6A00000000 AS DateTime), CAST(0x00008B8600000000 AS DateTime), CAST(0x00008B6E00000000 AS DateTime), 2, CAST(31.85000 AS Decimal(19, 5)), N'Frankenversand', N'Berliner Platz 43', N'München', N'null', N'80805', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10676, N'TORTU', 2, CAST(0x00008B6D00000000 AS DateTime), CAST(0x00008B8900000000 AS DateTime), CAST(0x00008B7400000000 AS DateTime), 2, CAST(2.01000 AS Decimal(19, 5)), N'Tortuga Restaurante', N'Avda. Azteca 123', N'México D.F.', N'null', N'05033', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10677, N'ANTON', 1, CAST(0x00008B6D00000000 AS DateTime), CAST(0x00008B8900000000 AS DateTime), CAST(0x00008B7100000000 AS DateTime), 3, CAST(4.03000 AS Decimal(19, 5)), N'Antonio Moreno Taquería', N'Mataderos 2312', N'México D.F.', N'null', N'05023', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10678, N'SAVEA', 7, CAST(0x00008B6E00000000 AS DateTime), CAST(0x00008B8A00000000 AS DateTime), CAST(0x00008B8500000000 AS DateTime), 3, CAST(388.98000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10679, N'BLONP', 8, CAST(0x00008B6E00000000 AS DateTime), CAST(0x00008B8A00000000 AS DateTime), CAST(0x00008B7500000000 AS DateTime), 3, CAST(27.94000 AS Decimal(19, 5)), N'Blondel père et fils', N'24, place Kléber', N'Strasbourg', N'null', N'67000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10680, N'OLDWO', 1, CAST(0x00008B6F00000000 AS DateTime), CAST(0x00008B8B00000000 AS DateTime), CAST(0x00008B7100000000 AS DateTime), 1, CAST(26.61000 AS Decimal(19, 5)), N'Old World Delicatessen', N'2743 Bering St.', N'Anchorage', N'AK', N'99508', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10681, N'GREAL', 3, CAST(0x00008B7000000000 AS DateTime), CAST(0x00008B8C00000000 AS DateTime), CAST(0x00008B7500000000 AS DateTime), 3, CAST(76.13000 AS Decimal(19, 5)), N'Great Lakes Food Market', N'2732 Baker Blvd.', N'Eugene', N'OR', N'97403', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10682, N'ANTON', 3, CAST(0x00008B7000000000 AS DateTime), CAST(0x00008B8C00000000 AS DateTime), CAST(0x00008B7600000000 AS DateTime), 2, CAST(36.13000 AS Decimal(19, 5)), N'Antonio Moreno Taquería', N'Mataderos 2312', N'México D.F.', N'null', N'05023', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10683, N'DUMON', 2, CAST(0x00008B7100000000 AS DateTime), CAST(0x00008B8D00000000 AS DateTime), CAST(0x00008B7600000000 AS DateTime), 1, CAST(4.40000 AS Decimal(19, 5)), N'Du monde entier', N'67, rue des Cinquante Otages', N'Nantes', N'null', N'44000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10684, N'OTTIK', 3, CAST(0x00008B7100000000 AS DateTime), CAST(0x00008B8D00000000 AS DateTime), CAST(0x00008B7500000000 AS DateTime), 1, CAST(145.63000 AS Decimal(19, 5)), N'Ottilies Käseladen', N'Mehrheimerstr. 369', N'Köln', N'null', N'50739', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10685, N'GOURL', 4, CAST(0x00008B7400000000 AS DateTime), CAST(0x00008B8200000000 AS DateTime), CAST(0x00008B7800000000 AS DateTime), 2, CAST(33.75000 AS Decimal(19, 5)), N'Gourmet Lanchonetes', N'Av. Brasil, 442', N'Campinas', N'SP', N'04876-786', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10686, N'PICCO', 2, CAST(0x00008B7500000000 AS DateTime), CAST(0x00008B9100000000 AS DateTime), CAST(0x00008B7D00000000 AS DateTime), 1, CAST(96.50000 AS Decimal(19, 5)), N'Piccolo und mehr', N'Geislweg 14', N'Salzburg', N'null', N'5020', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10687, N'HUNGO', 9, CAST(0x00008B7500000000 AS DateTime), CAST(0x00008B9100000000 AS DateTime), CAST(0x00008B9300000000 AS DateTime), 2, CAST(296.43000 AS Decimal(19, 5)), N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', N'null', N'Ireland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10688, N'VAFFE', 4, CAST(0x00008B7600000000 AS DateTime), CAST(0x00008B8400000000 AS DateTime), CAST(0x00008B7C00000000 AS DateTime), 2, CAST(299.09000 AS Decimal(19, 5)), N'Vaffeljernet', N'Smagsloget 45', N'Århus', N'null', N'8200', N'Denmark')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10689, N'BERGS', 1, CAST(0x00008B7600000000 AS DateTime), CAST(0x00008B9200000000 AS DateTime), CAST(0x00008B7C00000000 AS DateTime), 2, CAST(13.42000 AS Decimal(19, 5)), N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', N'null', N'S-958 22', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10690, N'HANAR', 1, CAST(0x00008B7700000000 AS DateTime), CAST(0x00008B9300000000 AS DateTime), CAST(0x00008B7800000000 AS DateTime), 1, CAST(15.80000 AS Decimal(19, 5)), N'Hanari Carnes', N'Rua do Paço, 67', N'Rio de Janeiro', N'RJ', N'05454-876', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10691, N'QUICK', 2, CAST(0x00008B7800000000 AS DateTime), CAST(0x00008BA200000000 AS DateTime), CAST(0x00008B8B00000000 AS DateTime), 2, CAST(810.05000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10692, N'ALFKI', 4, CAST(0x00008B7800000000 AS DateTime), CAST(0x00008B9400000000 AS DateTime), CAST(0x00008B8200000000 AS DateTime), 2, CAST(61.02000 AS Decimal(19, 5)), N'Alfred''s Futterkiste', N'Obere Str. 57', N'Berlin', N'null', N'12209', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10693, N'WHITC', 3, CAST(0x00008B7B00000000 AS DateTime), CAST(0x00008B8900000000 AS DateTime), CAST(0x00008B7F00000000 AS DateTime), 3, CAST(139.34000 AS Decimal(19, 5)), N'White Clover Markets', N'1029 - 12th Ave. S.', N'Seattle', N'WA', N'98124', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10694, N'QUICK', 8, CAST(0x00008B7B00000000 AS DateTime), CAST(0x00008B9700000000 AS DateTime), CAST(0x00008B7E00000000 AS DateTime), 3, CAST(398.36000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10695, N'WILMK', 7, CAST(0x00008B7C00000000 AS DateTime), CAST(0x00008BA600000000 AS DateTime), CAST(0x00008B8300000000 AS DateTime), 1, CAST(16.72000 AS Decimal(19, 5)), N'Wilman Kala', N'Keskuskatu 45', N'Helsinki', N'null', N'21240', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10696, N'WHITC', 8, CAST(0x00008B7D00000000 AS DateTime), CAST(0x00008BA700000000 AS DateTime), CAST(0x00008B8300000000 AS DateTime), 3, CAST(102.55000 AS Decimal(19, 5)), N'White Clover Markets', N'1029 - 12th Ave. S.', N'Seattle', N'WA', N'98124', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10697, N'LINOD', 3, CAST(0x00008B7D00000000 AS DateTime), CAST(0x00008B9900000000 AS DateTime), CAST(0x00008B8300000000 AS DateTime), 1, CAST(45.52000 AS Decimal(19, 5)), N'LINO-Delicateses', N'Ave. 5 de Mayo Porlamar', N'I. de Margarita', N'Nueva Esparta', N'4980', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10698, N'ERNSH', 4, CAST(0x00008B7E00000000 AS DateTime), CAST(0x00008B9A00000000 AS DateTime), CAST(0x00008B8600000000 AS DateTime), 1, CAST(272.47000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10699, N'MORGK', 3, CAST(0x00008B7E00000000 AS DateTime), CAST(0x00008B9A00000000 AS DateTime), CAST(0x00008B8200000000 AS DateTime), 3, CAST(0.58000 AS Decimal(19, 5)), N'Morgenstern Gesundkost', N'Heerstr. 22', N'Leipzig', N'null', N'04179', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10700, N'SAVEA', 3, CAST(0x00008B7F00000000 AS DateTime), CAST(0x00008B9B00000000 AS DateTime), CAST(0x00008B8500000000 AS DateTime), 1, CAST(65.10000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10701, N'HUNGO', 6, CAST(0x00008B8200000000 AS DateTime), CAST(0x00008B9000000000 AS DateTime), CAST(0x00008B8400000000 AS DateTime), 3, CAST(220.31000 AS Decimal(19, 5)), N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', N'null', N'Ireland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10702, N'ALFKI', 4, CAST(0x00008B8200000000 AS DateTime), CAST(0x00008BAC00000000 AS DateTime), CAST(0x00008B8A00000000 AS DateTime), 1, CAST(23.94000 AS Decimal(19, 5)), N'Alfred''s Futterkiste', N'Obere Str. 57', N'Berlin', N'null', N'12209', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10703, N'FOLKO', 6, CAST(0x00008B8300000000 AS DateTime), CAST(0x00008B9F00000000 AS DateTime), CAST(0x00008B8900000000 AS DateTime), 2, CAST(152.30000 AS Decimal(19, 5)), N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', N'null', N'S-844 67', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10704, N'QUEEN', 6, CAST(0x00008B8300000000 AS DateTime), CAST(0x00008B9F00000000 AS DateTime), CAST(0x00008B9B00000000 AS DateTime), 1, CAST(4.78000 AS Decimal(19, 5)), N'Queen Cozinha', N'Alameda dos Canàrios, 891', N'Sao Paulo', N'SP', N'05487-020', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10705, N'HILAA', 9, CAST(0x00008B8400000000 AS DateTime), CAST(0x00008BA000000000 AS DateTime), CAST(0x00008BA600000000 AS DateTime), 2, CAST(3.52000 AS Decimal(19, 5)), N'HILARION-Abastos', N'Carrera 22 con Ave. Carlos Soublette #8-35', N'San Cristóbal', N'Táchira', N'5022', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10706, N'OLDWO', 8, CAST(0x00008B8500000000 AS DateTime), CAST(0x00008BA100000000 AS DateTime), CAST(0x00008B8A00000000 AS DateTime), 3, CAST(135.63000 AS Decimal(19, 5)), N'Old World Delicatessen', N'2743 Bering St.', N'Anchorage', N'AK', N'99508', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10707, N'AROUT', 4, CAST(0x00008B8500000000 AS DateTime), CAST(0x00008B9300000000 AS DateTime), CAST(0x00008B8C00000000 AS DateTime), 3, CAST(21.74000 AS Decimal(19, 5)), N'Around the Horn', N'Brook Farm Stratford St. Mary', N'Colchester', N'Essex', N'CO7 6JX', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10708, N'THEBI', 6, CAST(0x00008B8600000000 AS DateTime), CAST(0x00008BB000000000 AS DateTime), CAST(0x00008B9900000000 AS DateTime), 2, CAST(2.96000 AS Decimal(19, 5)), N'The Big Cheese', N'89 Jefferson Way Suite 2', N'Portland', N'OR', N'97201', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10709, N'GOURL', 1, CAST(0x00008B8600000000 AS DateTime), CAST(0x00008BA200000000 AS DateTime), CAST(0x00008BA800000000 AS DateTime), 3, CAST(210.80000 AS Decimal(19, 5)), N'Gourmet Lanchonetes', N'Av. Brasil, 442', N'Campinas', N'SP', N'04876-786', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10710, N'FRANS', 1, CAST(0x00008B8900000000 AS DateTime), CAST(0x00008BA500000000 AS DateTime), CAST(0x00008B8C00000000 AS DateTime), 1, CAST(4.98000 AS Decimal(19, 5)), N'Franchi S.p.A.', N'Via Monte Bianco 34', N'Torino', N'null', N'10100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10711, N'SAVEA', 5, CAST(0x00008B8A00000000 AS DateTime), CAST(0x00008BB400000000 AS DateTime), CAST(0x00008B9200000000 AS DateTime), 2, CAST(52.41000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10712, N'HUNGO', 3, CAST(0x00008B8A00000000 AS DateTime), CAST(0x00008BA600000000 AS DateTime), CAST(0x00008B9400000000 AS DateTime), 1, CAST(89.93000 AS Decimal(19, 5)), N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', N'null', N'Ireland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10713, N'SAVEA', 1, CAST(0x00008B8B00000000 AS DateTime), CAST(0x00008BA700000000 AS DateTime), CAST(0x00008B8D00000000 AS DateTime), 1, CAST(167.05000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10714, N'SAVEA', 5, CAST(0x00008B8B00000000 AS DateTime), CAST(0x00008BA700000000 AS DateTime), CAST(0x00008B9000000000 AS DateTime), 3, CAST(24.49000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10715, N'BONAP', 3, CAST(0x00008B8C00000000 AS DateTime), CAST(0x00008B9A00000000 AS DateTime), CAST(0x00008B9200000000 AS DateTime), 1, CAST(63.20000 AS Decimal(19, 5)), N'Bon app''', N'12, rue des Bouchers', N'Marseille', N'null', N'13008', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10716, N'RANCH', 4, CAST(0x00008B8D00000000 AS DateTime), CAST(0x00008BA900000000 AS DateTime), CAST(0x00008B9000000000 AS DateTime), 2, CAST(22.57000 AS Decimal(19, 5)), N'Rancho grande', N'Av. del Libertador 900', N'Buenos Aires', N'null', N'1010', N'Argentina')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10717, N'FRANK', 1, CAST(0x00008B8D00000000 AS DateTime), CAST(0x00008BA900000000 AS DateTime), CAST(0x00008B9200000000 AS DateTime), 2, CAST(59.25000 AS Decimal(19, 5)), N'Frankenversand', N'Berliner Platz 43', N'München', N'null', N'80805', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10718, N'KOENE', 1, CAST(0x00008B9000000000 AS DateTime), CAST(0x00008BAC00000000 AS DateTime), CAST(0x00008B9200000000 AS DateTime), 3, CAST(170.88000 AS Decimal(19, 5)), N'Königlich Essen', N'Maubelstr. 90', N'Brandenburg', N'null', N'14776', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10719, N'LETSS', 8, CAST(0x00008B9000000000 AS DateTime), CAST(0x00008BAC00000000 AS DateTime), CAST(0x00008B9900000000 AS DateTime), 2, CAST(51.44000 AS Decimal(19, 5)), N'Let''s Stop N Shop', N'87 Polk St. Suite 5', N'San Francisco', N'CA', N'94117', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10720, N'QUEDE', 8, CAST(0x00008B9100000000 AS DateTime), CAST(0x00008B9F00000000 AS DateTime), CAST(0x00008B9900000000 AS DateTime), 2, CAST(9.53000 AS Decimal(19, 5)), N'Que Delícia', N'Rua da Panificadora, 12', N'Rio de Janeiro', N'RJ', N'02389-673', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10721, N'QUICK', 5, CAST(0x00008B9200000000 AS DateTime), CAST(0x00008BAE00000000 AS DateTime), CAST(0x00008B9400000000 AS DateTime), 3, CAST(48.92000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10722, N'SAVEA', 8, CAST(0x00008B9200000000 AS DateTime), CAST(0x00008BBC00000000 AS DateTime), CAST(0x00008B9800000000 AS DateTime), 1, CAST(74.58000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10723, N'WHITC', 3, CAST(0x00008B9300000000 AS DateTime), CAST(0x00008BAF00000000 AS DateTime), CAST(0x00008BAD00000000 AS DateTime), 1, CAST(21.72000 AS Decimal(19, 5)), N'White Clover Markets', N'1029 - 12th Ave. S.', N'Seattle', N'WA', N'98124', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10724, N'MEREP', 8, CAST(0x00008B9300000000 AS DateTime), CAST(0x00008BBD00000000 AS DateTime), CAST(0x00008B9900000000 AS DateTime), 2, CAST(57.75000 AS Decimal(19, 5)), N'Mère Paillarde', N'43 rue St. Laurent', N'Montréal', N'Québec', N'H1J 1C3', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10725, N'FAMIA', 4, CAST(0x00008B9400000000 AS DateTime), CAST(0x00008BB000000000 AS DateTime), CAST(0x00008B9900000000 AS DateTime), 3, CAST(10.83000 AS Decimal(19, 5)), N'Familia Arquibaldo', N'Rua Orós, 92', N'Sao Paulo', N'SP', N'05442-030', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10726, N'EASTC', 4, CAST(0x00008B9700000000 AS DateTime), CAST(0x00008BA500000000 AS DateTime), CAST(0x00008BB700000000 AS DateTime), 1, CAST(16.56000 AS Decimal(19, 5)), N'Eastern Connection', N'35 King George', N'London', N'null', N'WX3 6FW', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10727, N'REGGC', 2, CAST(0x00008B9700000000 AS DateTime), CAST(0x00008BB300000000 AS DateTime), CAST(0x00008BB700000000 AS DateTime), 1, CAST(89.90000 AS Decimal(19, 5)), N'Reggiani Caseifici', N'Strada Provinciale 124', N'Reggio Emilia', N'null', N'42100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10728, N'QUEEN', 4, CAST(0x00008B9800000000 AS DateTime), CAST(0x00008BB400000000 AS DateTime), CAST(0x00008B9F00000000 AS DateTime), 2, CAST(58.33000 AS Decimal(19, 5)), N'Queen Cozinha', N'Alameda dos Canàrios, 891', N'Sao Paulo', N'SP', N'05487-020', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10729, N'LINOD', 8, CAST(0x00008B9800000000 AS DateTime), CAST(0x00008BC200000000 AS DateTime), CAST(0x00008BA200000000 AS DateTime), 3, CAST(141.06000 AS Decimal(19, 5)), N'LINO-Delicateses', N'Ave. 5 de Mayo Porlamar', N'I. de Margarita', N'Nueva Esparta', N'4980', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10730, N'BONAP', 5, CAST(0x00008B9900000000 AS DateTime), CAST(0x00008BB500000000 AS DateTime), CAST(0x00008BA200000000 AS DateTime), 1, CAST(20.12000 AS Decimal(19, 5)), N'Bon app''', N'12, rue des Bouchers', N'Marseille', N'null', N'13008', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10731, N'CHOPS', 7, CAST(0x00008B9A00000000 AS DateTime), CAST(0x00008BB600000000 AS DateTime), CAST(0x00008BA200000000 AS DateTime), 1, CAST(96.65000 AS Decimal(19, 5)), N'Chop-suey Chinese', N'Hauptstr. 31', N'Bern', N'null', N'3012', N'Switzerland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10732, N'BONAP', 3, CAST(0x00008B9A00000000 AS DateTime), CAST(0x00008BB600000000 AS DateTime), CAST(0x00008B9B00000000 AS DateTime), 1, CAST(16.97000 AS Decimal(19, 5)), N'Bon app''', N'12, rue des Bouchers', N'Marseille', N'null', N'13008', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10733, N'BERGS', 1, CAST(0x00008B9B00000000 AS DateTime), CAST(0x00008BB700000000 AS DateTime), CAST(0x00008B9E00000000 AS DateTime), 3, CAST(110.11000 AS Decimal(19, 5)), N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', N'null', N'S-958 22', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10734, N'GOURL', 2, CAST(0x00008B9B00000000 AS DateTime), CAST(0x00008BB700000000 AS DateTime), CAST(0x00008BA000000000 AS DateTime), 3, CAST(1.63000 AS Decimal(19, 5)), N'Gourmet Lanchonetes', N'Av. Brasil, 442', N'Campinas', N'SP', N'04876-786', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10735, N'LETSS', 6, CAST(0x00008B9E00000000 AS DateTime), CAST(0x00008BBA00000000 AS DateTime), CAST(0x00008BA900000000 AS DateTime), 2, CAST(45.97000 AS Decimal(19, 5)), N'Let''s Stop N Shop', N'87 Polk St. Suite 5', N'San Francisco', N'CA', N'94117', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10736, N'HUNGO', 9, CAST(0x00008B9F00000000 AS DateTime), CAST(0x00008BBB00000000 AS DateTime), CAST(0x00008BA900000000 AS DateTime), 2, CAST(44.10000 AS Decimal(19, 5)), N'Hungry Owl All-Night Grocers', N'8 Johnstown Road', N'Cork', N'Co. Cork', N'null', N'Ireland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10737, N'VINET', 2, CAST(0x00008B9F00000000 AS DateTime), CAST(0x00008BBB00000000 AS DateTime), CAST(0x00008BA600000000 AS DateTime), 2, CAST(7.79000 AS Decimal(19, 5)), N'Vins et alcools Chevalier', N'59 rue de l''Abbaye', N'Reims', N'null', N'51100', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10738, N'SPECD', 2, CAST(0x00008BA000000000 AS DateTime), CAST(0x00008BBC00000000 AS DateTime), CAST(0x00008BA600000000 AS DateTime), 1, CAST(2.91000 AS Decimal(19, 5)), N'Spécialités du monde', N'25, rue Lauriston', N'Paris', N'null', N'75016', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10739, N'VINET', 3, CAST(0x00008BA000000000 AS DateTime), CAST(0x00008BBC00000000 AS DateTime), CAST(0x00008BA500000000 AS DateTime), 3, CAST(11.08000 AS Decimal(19, 5)), N'Vins et alcools Chevalier', N'59 rue de l''Abbaye', N'Reims', N'null', N'51100', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10740, N'WHITC', 4, CAST(0x00008BA100000000 AS DateTime), CAST(0x00008BBD00000000 AS DateTime), CAST(0x00008BAD00000000 AS DateTime), 2, CAST(81.88000 AS Decimal(19, 5)), N'White Clover Markets', N'1029 - 12th Ave. S.', N'Seattle', N'WA', N'98124', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10741, N'AROUT', 4, CAST(0x00008BA200000000 AS DateTime), CAST(0x00008BB000000000 AS DateTime), CAST(0x00008BA600000000 AS DateTime), 3, CAST(10.96000 AS Decimal(19, 5)), N'Around the Horn', N'Brook Farm Stratford St. Mary', N'Colchester', N'Essex', N'CO7 6JX', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10742, N'BOTTM', 3, CAST(0x00008BA200000000 AS DateTime), CAST(0x00008BBE00000000 AS DateTime), CAST(0x00008BA600000000 AS DateTime), 3, CAST(243.73000 AS Decimal(19, 5)), N'Bottom-Dollar Markets', N'23 Tsawassen Blvd.', N'Tsawassen', N'BC', N'T2F 8M4', N'Canada')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10743, N'AROUT', 1, CAST(0x00008BA500000000 AS DateTime), CAST(0x00008BC100000000 AS DateTime), CAST(0x00008BA900000000 AS DateTime), 2, CAST(23.72000 AS Decimal(19, 5)), N'Around the Horn', N'Brook Farm Stratford St. Mary', N'Colchester', N'Essex', N'CO7 6JX', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10744, N'VAFFE', 6, CAST(0x00008BA500000000 AS DateTime), CAST(0x00008BC100000000 AS DateTime), CAST(0x00008BAC00000000 AS DateTime), 1, CAST(69.19000 AS Decimal(19, 5)), N'Vaffeljernet', N'Smagsloget 45', N'Århus', N'null', N'8200', N'Denmark')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10745, N'QUICK', 9, CAST(0x00008BA600000000 AS DateTime), CAST(0x00008BC200000000 AS DateTime), CAST(0x00008BAF00000000 AS DateTime), 1, CAST(3.52000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10746, N'CHOPS', 1, CAST(0x00008BA700000000 AS DateTime), CAST(0x00008BC300000000 AS DateTime), CAST(0x00008BA900000000 AS DateTime), 3, CAST(31.43000 AS Decimal(19, 5)), N'Chop-suey Chinese', N'Hauptstr. 31', N'Bern', N'null', N'3012', N'Switzerland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10747, N'PICCO', 6, CAST(0x00008BA700000000 AS DateTime), CAST(0x00008BC300000000 AS DateTime), CAST(0x00008BAE00000000 AS DateTime), 1, CAST(117.33000 AS Decimal(19, 5)), N'Piccolo und mehr', N'Geislweg 14', N'Salzburg', N'null', N'5020', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10748, N'SAVEA', 3, CAST(0x00008BA800000000 AS DateTime), CAST(0x00008BC400000000 AS DateTime), CAST(0x00008BB000000000 AS DateTime), 1, CAST(232.55000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10749, N'ISLAT', 4, CAST(0x00008BA800000000 AS DateTime), CAST(0x00008BC400000000 AS DateTime), CAST(0x00008BC500000000 AS DateTime), 2, CAST(61.53000 AS Decimal(19, 5)), N'Island Trading', N'Garden House Crowther Way', N'Cowes', N'Isle of Wight', N'PO31 7PJ', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10750, N'WARTH', 9, CAST(0x00008BA900000000 AS DateTime), CAST(0x00008BC500000000 AS DateTime), CAST(0x00008BAC00000000 AS DateTime), 1, CAST(79.30000 AS Decimal(19, 5)), N'Wartian Herkku', N'Torikatu 38', N'Oulu', N'null', N'90110', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10751, N'RICSU', 3, CAST(0x00008BAC00000000 AS DateTime), CAST(0x00008BC800000000 AS DateTime), CAST(0x00008BB500000000 AS DateTime), 3, CAST(130.79000 AS Decimal(19, 5)), N'Richter Supermarkt', N'Starenweg 5', N'Genève', N'null', N'1204', N'Switzerland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10752, N'NORTS', 2, CAST(0x00008BAC00000000 AS DateTime), CAST(0x00008BC800000000 AS DateTime), CAST(0x00008BB000000000 AS DateTime), 3, CAST(1.39000 AS Decimal(19, 5)), N'North/South', N'South House 300 Queensbridge', N'London', N'null', N'SW7 1RZ', N'UK')
GO
print 'Processed 500 total records'
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10753, N'FRANS', 3, CAST(0x00008BAD00000000 AS DateTime), CAST(0x00008BC900000000 AS DateTime), CAST(0x00008BAF00000000 AS DateTime), 1, CAST(7.70000 AS Decimal(19, 5)), N'Franchi S.p.A.', N'Via Monte Bianco 34', N'Torino', N'null', N'10100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10754, N'MAGAA', 6, CAST(0x00008BAD00000000 AS DateTime), CAST(0x00008BC900000000 AS DateTime), CAST(0x00008BAF00000000 AS DateTime), 3, CAST(2.38000 AS Decimal(19, 5)), N'Magazzini Alimentari Riuniti', N'Via Ludovico il Moro 22', N'Bergamo', N'null', N'24100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10755, N'BONAP', 4, CAST(0x00008BAE00000000 AS DateTime), CAST(0x00008BCA00000000 AS DateTime), CAST(0x00008BB000000000 AS DateTime), 2, CAST(16.71000 AS Decimal(19, 5)), N'Bon app''', N'12, rue des Bouchers', N'Marseille', N'null', N'13008', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10756, N'SPLIR', 8, CAST(0x00008BAF00000000 AS DateTime), CAST(0x00008BCB00000000 AS DateTime), CAST(0x00008BB400000000 AS DateTime), 2, CAST(73.21000 AS Decimal(19, 5)), N'Split Rail Beer & Ale', N'P.O. Box 555', N'Lander', N'WY', N'82520', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10757, N'SAVEA', 6, CAST(0x00008BAF00000000 AS DateTime), CAST(0x00008BCB00000000 AS DateTime), CAST(0x00008BC100000000 AS DateTime), 1, CAST(8.19000 AS Decimal(19, 5)), N'Save-a-lot Markets', N'187 Suffolk Ln.', N'Boise', N'ID', N'83720', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10758, N'RICSU', 3, CAST(0x00008BB000000000 AS DateTime), CAST(0x00008BCC00000000 AS DateTime), CAST(0x00008BB600000000 AS DateTime), 3, CAST(138.17000 AS Decimal(19, 5)), N'Richter Supermarkt', N'Starenweg 5', N'Genève', N'null', N'1204', N'Switzerland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10759, N'ANATR', 3, CAST(0x00008BB000000000 AS DateTime), CAST(0x00008BCC00000000 AS DateTime), CAST(0x00008BBE00000000 AS DateTime), 3, CAST(11.99000 AS Decimal(19, 5)), N'Ana Trujillo Emparedados y helados', N'Avda. de la Constitución 2222', N'México D.F.', N'null', N'05021', N'Mexico')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10760, N'MAISD', 4, CAST(0x00008BB300000000 AS DateTime), CAST(0x00008BCF00000000 AS DateTime), CAST(0x00008BBC00000000 AS DateTime), 1, CAST(155.64000 AS Decimal(19, 5)), N'Maison Dewey', N'Rue Joseph-Bens 532', N'Bruxelles', N'null', N'B-1180', N'Belgium')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10761, N'RATTC', 5, CAST(0x00008BB400000000 AS DateTime), CAST(0x00008BD000000000 AS DateTime), CAST(0x00008BBA00000000 AS DateTime), 2, CAST(18.66000 AS Decimal(19, 5)), N'Rattlesnake Canyon Grocery', N'2817 Milton Dr.', N'Albuquerque', N'NM', N'87110', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10762, N'FOLKO', 3, CAST(0x00008BB400000000 AS DateTime), CAST(0x00008BD000000000 AS DateTime), CAST(0x00008BBB00000000 AS DateTime), 1, CAST(328.74000 AS Decimal(19, 5)), N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', N'null', N'S-844 67', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10763, N'FOLIG', 3, CAST(0x00008BB500000000 AS DateTime), CAST(0x00008BD100000000 AS DateTime), CAST(0x00008BBA00000000 AS DateTime), 3, CAST(37.35000 AS Decimal(19, 5)), N'Folies gourmandes', N'184, chaussée de Tournai', N'Lille', N'null', N'59000', N'France')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10764, N'ERNSH', 6, CAST(0x00008BB500000000 AS DateTime), CAST(0x00008BD100000000 AS DateTime), CAST(0x00008BBA00000000 AS DateTime), 3, CAST(145.45000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10765, N'QUICK', 3, CAST(0x00008BB600000000 AS DateTime), CAST(0x00008BD200000000 AS DateTime), CAST(0x00008BBB00000000 AS DateTime), 3, CAST(42.74000 AS Decimal(19, 5)), N'QUICK-Stop', N'Taucherstraße 10', N'Cunewalde', N'null', N'01307', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10766, N'OTTIK', 4, CAST(0x00008BB700000000 AS DateTime), CAST(0x00008BD300000000 AS DateTime), CAST(0x00008BBB00000000 AS DateTime), 1, CAST(157.55000 AS Decimal(19, 5)), N'Ottilies Käseladen', N'Mehrheimerstr. 369', N'Köln', N'null', N'50739', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10767, N'SUPRD', 4, CAST(0x00008BB700000000 AS DateTime), CAST(0x00008BD300000000 AS DateTime), CAST(0x00008BC100000000 AS DateTime), 3, CAST(1.59000 AS Decimal(19, 5)), N'Suprêmes délices', N'Boulevard Tirou, 255', N'Charleroi', N'null', N'B-6000', N'Belgium')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10768, N'AROUT', 3, CAST(0x00008BBA00000000 AS DateTime), CAST(0x00008BD600000000 AS DateTime), CAST(0x00008BC100000000 AS DateTime), 2, CAST(146.32000 AS Decimal(19, 5)), N'Around the Horn', N'Brook Farm Stratford St. Mary', N'Colchester', N'Essex', N'CO7 6JX', N'UK')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10769, N'VAFFE', 3, CAST(0x00008BBA00000000 AS DateTime), CAST(0x00008BD600000000 AS DateTime), CAST(0x00008BBE00000000 AS DateTime), 1, CAST(65.06000 AS Decimal(19, 5)), N'Vaffeljernet', N'Smagsloget 45', N'Århus', N'null', N'8200', N'Denmark')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10770, N'HANAR', 8, CAST(0x00008BBB00000000 AS DateTime), CAST(0x00008BD700000000 AS DateTime), CAST(0x00008BC300000000 AS DateTime), 3, CAST(5.32000 AS Decimal(19, 5)), N'Hanari Carnes', N'Rua do Paço, 67', N'Rio de Janeiro', N'RJ', N'05454-876', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10771, N'ERNSH', 9, CAST(0x00008BBC00000000 AS DateTime), CAST(0x00008BD800000000 AS DateTime), CAST(0x00008BD300000000 AS DateTime), 2, CAST(11.19000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10772, N'LEHMS', 3, CAST(0x00008BBC00000000 AS DateTime), CAST(0x00008BD800000000 AS DateTime), CAST(0x00008BC500000000 AS DateTime), 2, CAST(91.28000 AS Decimal(19, 5)), N'Lehmanns Marktstand', N'Magazinweg 7', N'Frankfurt a.M.', N'null', N'60528', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10773, N'ERNSH', 1, CAST(0x00008BBD00000000 AS DateTime), CAST(0x00008BD900000000 AS DateTime), CAST(0x00008BC200000000 AS DateTime), 3, CAST(96.43000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10774, N'FOLKO', 4, CAST(0x00008BBD00000000 AS DateTime), CAST(0x00008BCB00000000 AS DateTime), CAST(0x00008BBE00000000 AS DateTime), 1, CAST(48.20000 AS Decimal(19, 5)), N'Folk och fä HB', N'Åkergatan 24', N'Bräcke', N'null', N'S-844 67', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10775, N'THECR', 7, CAST(0x00008BBE00000000 AS DateTime), CAST(0x00008BDA00000000 AS DateTime), CAST(0x00008BCC00000000 AS DateTime), 1, CAST(20.25000 AS Decimal(19, 5)), N'The Cracker Box', N'55 Grizzly Peak Rd.', N'Butte', N'MT', N'59801', N'USA')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10776, N'ERNSH', 1, CAST(0x00008BC100000000 AS DateTime), CAST(0x00008BDD00000000 AS DateTime), CAST(0x00008BC400000000 AS DateTime), 3, CAST(351.53000 AS Decimal(19, 5)), N'Ernst Handel', N'Kirchgasse 6', N'Graz', N'null', N'8010', N'Austria')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10777, N'GOURL', 7, CAST(0x00008BC100000000 AS DateTime), CAST(0x00008BCF00000000 AS DateTime), CAST(0x00008BE600000000 AS DateTime), 2, CAST(3.01000 AS Decimal(19, 5)), N'Gourmet Lanchonetes', N'Av. Brasil, 442', N'Campinas', N'SP', N'04876-786', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10778, N'BERGS', 3, CAST(0x00008BC200000000 AS DateTime), CAST(0x00008BDE00000000 AS DateTime), CAST(0x00008BCA00000000 AS DateTime), 1, CAST(6.79000 AS Decimal(19, 5)), N'Berglunds snabbköp', N'Berguvsvägen 8', N'Luleå', N'null', N'S-958 22', N'Sweden')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10779, N'MORGK', 3, CAST(0x00008BC200000000 AS DateTime), CAST(0x00008BDE00000000 AS DateTime), CAST(0x00008BDF00000000 AS DateTime), 2, CAST(58.13000 AS Decimal(19, 5)), N'Morgenstern Gesundkost', N'Heerstr. 22', N'Leipzig', N'null', N'04179', N'Germany')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10780, N'LILAS', 2, CAST(0x00008BC200000000 AS DateTime), CAST(0x00008BD000000000 AS DateTime), CAST(0x00008BCB00000000 AS DateTime), 1, CAST(42.13000 AS Decimal(19, 5)), N'LILA-Supermercado', N'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', N'Barquisimeto', N'Lara', N'3508', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10781, N'WARTH', 2, CAST(0x00008BC300000000 AS DateTime), CAST(0x00008BDF00000000 AS DateTime), CAST(0x00008BC500000000 AS DateTime), 3, CAST(73.16000 AS Decimal(19, 5)), N'Wartian Herkku', N'Torikatu 38', N'Oulu', N'null', N'90110', N'Finland')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10782, N'CACTU', 9, CAST(0x00008BC300000000 AS DateTime), CAST(0x00008BDF00000000 AS DateTime), CAST(0x00008BC800000000 AS DateTime), 3, CAST(1.10000 AS Decimal(19, 5)), N'Cactus Comidas para llevar', N'Cerrito 333', N'Buenos Aires', N'null', N'1010', N'Argentina')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10783, N'HANAR', 4, CAST(0x00008BC400000000 AS DateTime), CAST(0x00008BE000000000 AS DateTime), CAST(0x00008BC500000000 AS DateTime), 2, CAST(124.98000 AS Decimal(19, 5)), N'Hanari Carnes', N'Rua do Paço, 67', N'Rio de Janeiro', N'RJ', N'05454-876', N'Brazil')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10784, N'MAGAA', 4, CAST(0x00008BC400000000 AS DateTime), CAST(0x00008BE000000000 AS DateTime), CAST(0x00008BC800000000 AS DateTime), 3, CAST(70.09000 AS Decimal(19, 5)), N'Magazzini Alimentari Riuniti', N'Via Ludovico il Moro 22', N'Bergamo', N'null', N'24100', N'Italy')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10785, N'GROSR', 1, CAST(0x00008BC400000000 AS DateTime), CAST(0x00008BE000000000 AS DateTime), CAST(0x00008BCA00000000 AS DateTime), 3, CAST(1.51000 AS Decimal(19, 5)), N'GROSELLA-Restaurante', N'5ª Ave. Los Palos Grandes', N'Caracas', N'DF', N'1081', N'Venezuela')
INSERT [dbo].[Orders] ([OrderId], [CustomerId], [EmployeeId], [OrderDate], [RequiredDate], [ShippedDate], [ShipVia], [Freight], [ShipName], [ShipAddress], [ShipCity], [ShipRegion], [ShipPostalCode], [ShipCountry]) VALUES (10786, N'QUEEN', 8, CAST(0x00008BC500000000 AS DateTime), CAST(0x00008BE100000000 AS DateTime), CAST(0x00008BC900000000 AS DateTime), 1, CAST(110.87000 AS Decimal(19, 5)), N'Queen Cozinha', N'Alameda dos Canàrios, 891', N'Sao Paulo', N'SP', N'05487-020', N'Brazil')