-
Notifications
You must be signed in to change notification settings - Fork 0
/
DWHLoadDimProducts.dtsx
938 lines (938 loc) · 56 KB
/
DWHLoadDimProducts.dtsx
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
<?xml version="1.0"?>
<DTS:Executable xmlns:DTS="www.microsoft.com/SqlServer/Dts"
DTS:refId="Package"
DTS:CreationDate="2/27/2023 5:22:34 PM"
DTS:CreationName="Microsoft.Package"
DTS:CreatorComputerName="DESKTOP-RS9P4A5"
DTS:CreatorName="DESKTOP-RS9P4A5\Admin"
DTS:DTSID="{00C57336-F215-4F3F-B504-D0E56575A248}"
DTS:ExecutableType="Microsoft.Package"
DTS:LastModifiedProductVersion="16.0.5131.0"
DTS:LocaleID="1033"
DTS:ObjectName="Package2"
DTS:PackageType="5"
DTS:VersionBuild="9"
DTS:VersionGUID="{3D952503-9F65-41D7-B16E-994C32983556}">
<DTS:Property
DTS:Name="PackageFormatVersion">8</DTS:Property>
<DTS:ConnectionManagers>
<DTS:ConnectionManager
DTS:refId="Package.ConnectionManagers[LocalHost.Northwind]"
DTS:CreationName="OLEDB"
DTS:DTSID="{D586CF19-886C-466C-9D3F-B20B6C6B3D9D}"
DTS:ObjectName="LocalHost.Northwind">
<DTS:ObjectData>
<DTS:ConnectionManager
DTS:ConnectRetryCount="1"
DTS:ConnectRetryInterval="5"
DTS:ConnectionString="Data Source=.;Initial Catalog=Northwind;Provider=MSOLEDBSQL.1;Integrated Security=SSPI;Application Name=SSIS-Package2-{D586CF19-886C-466C-9D3F-B20B6C6B3D9D}LocalHost.Northwind;Auto Translate=False;" />
</DTS:ObjectData>
</DTS:ConnectionManager>
<DTS:ConnectionManager
DTS:refId="Package.ConnectionManagers[LocalHost.NorthWindDWH]"
DTS:CreationName="OLEDB"
DTS:DTSID="{1040BE80-FCD4-4B60-B752-533CB8734874}"
DTS:ObjectName="LocalHost.NorthWindDWH">
<DTS:ObjectData>
<DTS:ConnectionManager
DTS:ConnectRetryCount="1"
DTS:ConnectRetryInterval="5"
DTS:ConnectionString="Data Source=.;Initial Catalog=NorthWindDWH;Provider=MSOLEDBSQL.1;Integrated Security=SSPI;Application Name=SSIS-Package2-{1040BE80-FCD4-4B60-B752-533CB8734874}LocalHost.NorthWindDWH;Auto Translate=False;" />
</DTS:ObjectData>
</DTS:ConnectionManager>
</DTS:ConnectionManagers>
<DTS:Variables />
<DTS:Executables>
<DTS:Executable
DTS:refId="Package\NorthwindOLTPtoOLAP"
DTS:CreationName="Microsoft.Pipeline"
DTS:Description="DataTransformationDimProducts"
DTS:DTSID="{CA69800D-F020-4621-8F48-E4E18FEAFB41}"
DTS:ExecutableType="Microsoft.Pipeline"
DTS:LocaleID="-1"
DTS:ObjectName="NorthwindOLTPtoOLAP">
<DTS:Variables />
<DTS:ObjectData>
<pipeline
version="1">
<components>
<component
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView"
componentClassID="Microsoft.OLEDBSource"
contactInfo="OLE DB Source;Microsoft Corporation; Microsoft SQL Server; (C) Microsoft Corporation; All Rights Reserved; http://www.microsoft.com/sql/support;7"
description="OLE DB Source"
name="DataSourceSalesProductView"
usesDispositions="true"
version="7">
<properties>
<property
dataType="System.Int32"
description="The number of seconds before a command times out. A value of 0 indicates an infinite time-out."
name="CommandTimeout">0</property>
<property
dataType="System.String"
description="Specifies the name of the database object used to open a rowset."
name="OpenRowset">[dbo].[SalesProducts]</property>
<property
dataType="System.String"
description="Specifies the variable that contains the name of the database object used to open a rowset."
name="OpenRowsetVariable"></property>
<property
dataType="System.String"
description="The SQL command to be executed."
name="SqlCommand"
UITypeEditor="Microsoft.DataTransformationServices.Controls.ModalMultilineStringEditor"></property>
<property
dataType="System.String"
description="The variable that contains the SQL command to be executed."
name="SqlCommandVariable"></property>
<property
dataType="System.Int32"
description="Specifies the column code page to use when code page information is unavailable from the data source."
name="DefaultCodePage">1252</property>
<property
dataType="System.Boolean"
description="Forces the use of the DefaultCodePage property value when describing character data."
name="AlwaysUseDefaultCodePage">false</property>
<property
dataType="System.Int32"
description="Specifies the mode used to access the database."
name="AccessMode"
typeConverter="AccessMode">0</property>
<property
dataType="System.String"
description="The mappings between the parameters in the SQL command and variables."
name="ParameterMapping"></property>
</properties>
<connections>
<connection
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Connections[OleDbConnection]"
connectionManagerID="Package.ConnectionManagers[LocalHost.Northwind]"
connectionManagerRefId="Package.ConnectionManagers[LocalHost.Northwind]"
description="The OLE DB runtime connection used to access the database."
name="OleDbConnection" />
</connections>
<outputs>
<output
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output]"
name="OLE DB Source Output">
<outputColumns>
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Product ID]"
dataType="i4"
errorOrTruncationOperation="Conversion"
errorRowDisposition="FailComponent"
externalMetadataColumnId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[ProductID]"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Product ID]"
name="Product ID"
truncationRowDisposition="FailComponent" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Product Name]"
dataType="wstr"
errorOrTruncationOperation="Conversion"
errorRowDisposition="FailComponent"
externalMetadataColumnId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[ProductName]"
length="40"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Product Name]"
name="Product Name"
truncationRowDisposition="FailComponent" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Quantity Per Unit]"
dataType="wstr"
errorOrTruncationOperation="Conversion"
errorRowDisposition="FailComponent"
externalMetadataColumnId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[QuantityPerUnit]"
length="20"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Quantity Per Unit]"
name="Quantity Per Unit"
truncationRowDisposition="FailComponent" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Units In Stock]"
dataType="i2"
errorOrTruncationOperation="Conversion"
errorRowDisposition="FailComponent"
externalMetadataColumnId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[UnitsInStock]"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Units In Stock]"
name="Units In Stock"
truncationRowDisposition="FailComponent" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Units On Order]"
dataType="i2"
errorOrTruncationOperation="Conversion"
errorRowDisposition="FailComponent"
externalMetadataColumnId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[UnitsOnOrder]"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Units On Order]"
name="Units On Order"
truncationRowDisposition="FailComponent" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Reorder Level]"
dataType="i2"
errorOrTruncationOperation="Conversion"
errorRowDisposition="FailComponent"
externalMetadataColumnId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[ReorderLevel]"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Reorder Level]"
name="Reorder Level"
truncationRowDisposition="FailComponent" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Category Name]"
dataType="wstr"
errorOrTruncationOperation="Conversion"
errorRowDisposition="FailComponent"
externalMetadataColumnId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[CategoryName]"
length="15"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Category Name]"
name="Category Name"
truncationRowDisposition="FailComponent" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Unit Price]"
dataType="cy"
errorOrTruncationOperation="Conversion"
errorRowDisposition="FailComponent"
externalMetadataColumnId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[UnitPrice]"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Unit Price]"
name="Unit Price"
truncationRowDisposition="FailComponent" />
</outputColumns>
<externalMetadataColumns
isUsed="True">
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[ProductID]"
dataType="i4"
name="ProductID" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[ProductName]"
dataType="wstr"
length="40"
name="ProductName" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[SupplierID]"
dataType="i4"
name="SupplierID" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[CategoryID]"
dataType="i4"
name="CategoryID" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[QuantityPerUnit]"
dataType="wstr"
length="20"
name="QuantityPerUnit" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[UnitPrice]"
dataType="cy"
name="UnitPrice" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[UnitsInStock]"
dataType="i2"
name="UnitsInStock" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[UnitsOnOrder]"
dataType="i2"
name="UnitsOnOrder" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[ReorderLevel]"
dataType="i2"
name="ReorderLevel" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[Discontinued]"
dataType="bool"
name="Discontinued" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[CategoryName]"
dataType="wstr"
length="15"
name="CategoryName" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[Description]"
dataType="nText"
name="Description" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].ExternalColumns[Picture]"
dataType="image"
name="Picture" />
</externalMetadataColumns>
</output>
<output
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output]"
isErrorOut="true"
name="OLE DB Source Error Output">
<outputColumns>
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[ProductID]"
dataType="i4"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[ProductID]"
name="ProductID" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[ProductName]"
dataType="wstr"
length="40"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[ProductName]"
name="ProductName" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[QuantityPerUnit]"
dataType="wstr"
length="20"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[QuantityPerUnit]"
name="QuantityPerUnit" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[UnitsInStock]"
dataType="i2"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[UnitsInStock]"
name="UnitsInStock" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[UnitsOnOrder]"
dataType="i2"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[UnitsOnOrder]"
name="UnitsOnOrder" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[ReorderLevel]"
dataType="i2"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[ReorderLevel]"
name="ReorderLevel" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[CategoryName]"
dataType="wstr"
length="15"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[CategoryName]"
name="CategoryName" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[ErrorCode]"
dataType="i4"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[ErrorCode]"
name="ErrorCode"
specialFlags="1" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[ErrorColumn]"
dataType="i4"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[ErrorColumn]"
name="ErrorColumn"
specialFlags="2" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[UnitPrice]"
dataType="cy"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Error Output].Columns[UnitPrice]"
name="UnitPrice" />
</outputColumns>
<externalMetadataColumns />
</output>
</outputs>
</component>
<component
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable"
componentClassID="Microsoft.OLEDBDestination"
contactInfo="OLE DB Destination;Microsoft Corporation; Microsoft SQL Server; (C) Microsoft Corporation; All Rights Reserved; http://www.microsoft.com/sql/support;4"
description="OLE DB Destination"
name="LoadtoDimProductTable"
usesDispositions="true"
version="4">
<properties>
<property
dataType="System.Int32"
description="The number of seconds before a command times out. A value of 0 indicates an infinite time-out."
name="CommandTimeout">0</property>
<property
dataType="System.String"
description="Specifies the name of the database object used to open a rowset."
name="OpenRowset">[dbo].[DimProduct]</property>
<property
dataType="System.String"
description="Specifies the variable that contains the name of the database object used to open a rowset."
name="OpenRowsetVariable"></property>
<property
dataType="System.String"
description="The SQL command to be executed."
name="SqlCommand"
UITypeEditor="Microsoft.DataTransformationServices.Controls.ModalMultilineStringEditor"></property>
<property
dataType="System.Int32"
description="Specifies the column code page to use when code page information is unavailable from the data source."
name="DefaultCodePage">1252</property>
<property
dataType="System.Boolean"
description="Forces the use of the DefaultCodePage property value when describing character data."
name="AlwaysUseDefaultCodePage">false</property>
<property
dataType="System.Int32"
description="Specifies the mode used to access the database."
name="AccessMode"
typeConverter="AccessMode">3</property>
<property
dataType="System.Boolean"
description="Indicates whether the values supplied for identity columns will be copied to the destination. If false, values for identity columns will be auto-generated at the destination. Applies only if fast load is turned on."
name="FastLoadKeepIdentity">false</property>
<property
dataType="System.Boolean"
description="Indicates whether the columns containing null will have null inserted in the destination. If false, columns containing null will have their default values inserted at the destination. Applies only if fast load is turned on."
name="FastLoadKeepNulls">false</property>
<property
dataType="System.String"
description="Specifies options to be used with fast load. Applies only if fast load is turned on."
name="FastLoadOptions">TABLOCK,CHECK_CONSTRAINTS</property>
<property
dataType="System.Int32"
description="Specifies when commits are issued during data insertion. A value of 0 specifies that one commit will be issued at the end of data insertion. Applies only if fast load is turned on."
name="FastLoadMaxInsertCommitSize">2147483647</property>
</properties>
<connections>
<connection
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Connections[OleDbConnection]"
connectionManagerID="Package.ConnectionManagers[LocalHost.NorthWindDWH]"
connectionManagerRefId="Package.ConnectionManagers[LocalHost.NorthWindDWH]"
description="The OLE DB runtime connection used to access the database."
name="OleDbConnection" />
</connections>
<inputs>
<input
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input]"
errorOrTruncationOperation="Insert"
errorRowDisposition="FailComponent"
hasSideEffects="true"
name="OLE DB Destination Input">
<inputColumns>
<inputColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].Columns[Product ID]"
cachedDataType="i4"
cachedName="Product ID"
cachedSortKeyPosition="1"
externalMetadataColumnId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].ExternalColumns[Product ID]"
lineageId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Product ID]" />
<inputColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].Columns[Product Name]"
cachedDataType="wstr"
cachedLength="40"
cachedName="Product Name"
externalMetadataColumnId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].ExternalColumns[Product Name]"
lineageId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Product Name]" />
<inputColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].Columns[Quantity Per Unit]"
cachedDataType="wstr"
cachedLength="20"
cachedName="Quantity Per Unit"
externalMetadataColumnId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].ExternalColumns[Quantity Per Unit]"
lineageId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Quantity Per Unit]" />
<inputColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].Columns[Units In Stock]"
cachedDataType="i2"
cachedName="Units In Stock"
externalMetadataColumnId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].ExternalColumns[Units In Stock]"
lineageId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Units In Stock]" />
<inputColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].Columns[Units On Order]"
cachedDataType="i2"
cachedName="Units On Order"
externalMetadataColumnId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].ExternalColumns[Units On Order]"
lineageId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Units On Order]" />
<inputColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].Columns[Reorder Level]"
cachedDataType="i2"
cachedName="Reorder Level"
externalMetadataColumnId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].ExternalColumns[Reorder Level]"
lineageId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Reorder Level]" />
<inputColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].Columns[Category Name]"
cachedDataType="wstr"
cachedLength="15"
cachedName="Category Name"
externalMetadataColumnId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].ExternalColumns[Category Name]"
lineageId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Category Name]" />
<inputColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].Columns[Unit Price]"
cachedDataType="cy"
cachedName="Unit Price"
externalMetadataColumnId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].ExternalColumns[Unit Price]"
lineageId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Unit Price]" />
</inputColumns>
<externalMetadataColumns
isUsed="True">
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].ExternalColumns[Product ID]"
dataType="i4"
name="Product ID" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].ExternalColumns[Product Name]"
dataType="wstr"
length="40"
name="Product Name" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].ExternalColumns[Quantity Per Unit]"
dataType="wstr"
length="20"
name="Quantity Per Unit" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].ExternalColumns[Units In Stock]"
dataType="i2"
name="Units In Stock" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].ExternalColumns[Units On Order]"
dataType="i2"
name="Units On Order" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].ExternalColumns[Reorder Level]"
dataType="i2"
name="Reorder Level" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].ExternalColumns[Category Name]"
dataType="wstr"
length="15"
name="Category Name" />
<externalMetadataColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input].ExternalColumns[Unit Price]"
dataType="cy"
name="Unit Price" />
</externalMetadataColumns>
</input>
</inputs>
<outputs>
<output
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Outputs[OLE DB Destination Error Output]"
exclusionGroup="1"
isErrorOut="true"
name="OLE DB Destination Error Output"
synchronousInputId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input]">
<outputColumns>
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Outputs[OLE DB Destination Error Output].Columns[ErrorCode]"
dataType="i4"
lineageId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Outputs[OLE DB Destination Error Output].Columns[ErrorCode]"
name="ErrorCode"
specialFlags="1" />
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Outputs[OLE DB Destination Error Output].Columns[ErrorColumn]"
dataType="i4"
lineageId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Outputs[OLE DB Destination Error Output].Columns[ErrorColumn]"
name="ErrorColumn"
specialFlags="2" />
</outputColumns>
<externalMetadataColumns />
</output>
</outputs>
</component>
<component
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID"
componentClassID="Microsoft.Sort"
contactInfo="Sort;Microsoft Corporation; Microsoft SQL Server; (C) Microsoft Corporation; All Rights Reserved; http://www.microsoft.com/sql/support;1"
description="Sorts input data in ascending or descending order when it cannot be sorted at its source. For example, sort sales data by 'customer id' before it is written to a flat file and delivered to another department. Note: We do not recommend this transformation for large data flows."
name="SortedbyProductID"
version="1">
<properties>
<property
dataType="System.Boolean"
description="Indicates whether the Sort transformation removes rows with duplicate sort values."
name="EliminateDuplicates">true</property>
<property
dataType="System.Int32"
description="Specifies the maximum number of threads to use for sorting."
expressionType="Notify"
name="MaximumThreads">-1</property>
</properties>
<inputs>
<input
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Inputs[Sort Input]"
name="Sort Input">
<inputColumns>
<inputColumn
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Inputs[Sort Input].Columns[Product ID]"
cachedDataType="i4"
cachedName="Product ID"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Product ID]">
<properties>
<property
dataType="System.Int32"
description="Specifies the comparison options for character data."
name="NewComparisonFlags">0</property>
<property
dataType="System.Int32"
description="Specifies the sort order of the column."
name="NewSortKeyPosition">1</property>
</properties>
</inputColumn>
<inputColumn
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Inputs[Sort Input].Columns[Product Name]"
cachedDataType="wstr"
cachedLength="40"
cachedName="Product Name"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Product Name]">
<properties>
<property
dataType="System.Int32"
description="Specifies the comparison options for character data."
name="NewComparisonFlags">0</property>
<property
dataType="System.Int32"
description="Specifies the sort order of the column."
name="NewSortKeyPosition">0</property>
</properties>
</inputColumn>
<inputColumn
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Inputs[Sort Input].Columns[Quantity Per Unit]"
cachedDataType="wstr"
cachedLength="20"
cachedName="Quantity Per Unit"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Quantity Per Unit]">
<properties>
<property
dataType="System.Int32"
description="Specifies the comparison options for character data."
name="NewComparisonFlags">0</property>
<property
dataType="System.Int32"
description="Specifies the sort order of the column."
name="NewSortKeyPosition">0</property>
</properties>
</inputColumn>
<inputColumn
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Inputs[Sort Input].Columns[Units In Stock]"
cachedDataType="i2"
cachedName="Units In Stock"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Units In Stock]">
<properties>
<property
dataType="System.Int32"
description="Specifies the comparison options for character data."
name="NewComparisonFlags">0</property>
<property
dataType="System.Int32"
description="Specifies the sort order of the column."
name="NewSortKeyPosition">0</property>
</properties>
</inputColumn>
<inputColumn
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Inputs[Sort Input].Columns[Units On Order]"
cachedDataType="i2"
cachedName="Units On Order"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Units On Order]">
<properties>
<property
dataType="System.Int32"
description="Specifies the comparison options for character data."
name="NewComparisonFlags">0</property>
<property
dataType="System.Int32"
description="Specifies the sort order of the column."
name="NewSortKeyPosition">0</property>
</properties>
</inputColumn>
<inputColumn
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Inputs[Sort Input].Columns[Reorder Level]"
cachedDataType="i2"
cachedName="Reorder Level"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Reorder Level]">
<properties>
<property
dataType="System.Int32"
description="Specifies the comparison options for character data."
name="NewComparisonFlags">0</property>
<property
dataType="System.Int32"
description="Specifies the sort order of the column."
name="NewSortKeyPosition">0</property>
</properties>
</inputColumn>
<inputColumn
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Inputs[Sort Input].Columns[Category Name]"
cachedDataType="wstr"
cachedLength="15"
cachedName="Category Name"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Category Name]">
<properties>
<property
dataType="System.Int32"
description="Specifies the comparison options for character data."
name="NewComparisonFlags">0</property>
<property
dataType="System.Int32"
description="Specifies the sort order of the column."
name="NewSortKeyPosition">0</property>
</properties>
</inputColumn>
<inputColumn
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Inputs[Sort Input].Columns[Unit Price]"
cachedDataType="cy"
cachedName="Unit Price"
lineageId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Unit Price]">
<properties>
<property
dataType="System.Int32"
description="Specifies the comparison options for character data."
name="NewComparisonFlags">0</property>
<property
dataType="System.Int32"
description="Specifies the sort order of the column."
name="NewSortKeyPosition">0</property>
</properties>
</inputColumn>
</inputColumns>
<externalMetadataColumns />
</input>
</inputs>
<outputs>
<output
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output]"
isSorted="true"
name="Sort Output">
<outputColumns>
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Product ID]"
dataType="i4"
lineageId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Product ID]"
name="Product ID"
sortKeyPosition="1">
<properties>
<property
containsID="true"
dataType="System.Int32"
description="Specifies the lineage identifier of the input column that is associated with this output column."
name="SortColumnId">#{Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Product ID]}</property>
</properties>
</outputColumn>
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Product Name]"
dataType="wstr"
length="40"
lineageId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Product Name]"
name="Product Name">
<properties>
<property
containsID="true"
dataType="System.Int32"
description="Specifies the lineage identifier of the input column that is associated with this output column."
name="SortColumnId">#{Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Product Name]}</property>
</properties>
</outputColumn>
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Quantity Per Unit]"
dataType="wstr"
length="20"
lineageId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Quantity Per Unit]"
name="Quantity Per Unit">
<properties>
<property
containsID="true"
dataType="System.Int32"
description="Specifies the lineage identifier of the input column that is associated with this output column."
name="SortColumnId">#{Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Quantity Per Unit]}</property>
</properties>
</outputColumn>
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Units In Stock]"
dataType="i2"
lineageId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Units In Stock]"
name="Units In Stock">
<properties>
<property
containsID="true"
dataType="System.Int32"
description="Specifies the lineage identifier of the input column that is associated with this output column."
name="SortColumnId">#{Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Units In Stock]}</property>
</properties>
</outputColumn>
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Units On Order]"
dataType="i2"
lineageId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Units On Order]"
name="Units On Order">
<properties>
<property
containsID="true"
dataType="System.Int32"
description="Specifies the lineage identifier of the input column that is associated with this output column."
name="SortColumnId">#{Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Units On Order]}</property>
</properties>
</outputColumn>
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Reorder Level]"
dataType="i2"
lineageId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Reorder Level]"
name="Reorder Level">
<properties>
<property
containsID="true"
dataType="System.Int32"
description="Specifies the lineage identifier of the input column that is associated with this output column."
name="SortColumnId">#{Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Reorder Level]}</property>
</properties>
</outputColumn>
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Category Name]"
dataType="wstr"
length="15"
lineageId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Category Name]"
name="Category Name">
<properties>
<property
containsID="true"
dataType="System.Int32"
description="Specifies the lineage identifier of the input column that is associated with this output column."
name="SortColumnId">#{Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Category Name]}</property>
</properties>
</outputColumn>
<outputColumn
refId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Unit Price]"
dataType="cy"
lineageId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output].Columns[Unit Price]"
name="Unit Price">
<properties>
<property
containsID="true"
dataType="System.Int32"
description="Specifies the lineage identifier of the input column that is associated with this output column."
name="SortColumnId">#{Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output].Columns[Unit Price]}</property>
</properties>
</outputColumn>
</outputColumns>
<externalMetadataColumns />
</output>
</outputs>
</component>
</components>
<paths>
<path
refId="Package\NorthwindOLTPtoOLAP.Paths[OLE DB Source Output]"
endId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Inputs[Sort Input]"
name="OLE DB Source Output"
startId="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView.Outputs[OLE DB Source Output]" />
<path
refId="Package\NorthwindOLTPtoOLAP.Paths[Sort Output]"
endId="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable.Inputs[OLE DB Destination Input]"
name="Sort Output"
startId="Package\NorthwindOLTPtoOLAP\SortedbyProductID.Outputs[Sort Output]" />
</paths>
</pipeline>
</DTS:ObjectData>
</DTS:Executable>
</DTS:Executables>
<DTS:DesignTimeProperties><![CDATA[<?xml version="1.0"?>
<!--This CDATA section contains the layout information of the package. The section includes information such as (x,y) coordinates, width, and height.-->
<!--If you manually edit this section and make a mistake, you can delete it. -->
<!--The package will still be able to load normally but the previous layout information will be lost and the designer will automatically re-arrange the elements on the design surface.-->
<Objects
Version="8">
<!--Each node below will contain properties that do not affect runtime behavior.-->
<Package
design-time-name="Package">
<LayoutInfo>
<GraphLayout
Capacity="4" xmlns="clr-namespace:Microsoft.SqlServer.IntegrationServices.Designer.Model.Serialization;assembly=Microsoft.SqlServer.IntegrationServices.Graph">
<NodeLayout
Size="152,42.6666666666667"
Id="Package\NorthwindOLTPtoOLAP"
TopLeft="5.5,5.5" />
</GraphLayout>
</LayoutInfo>
</Package>
<TaskHost
design-time-name="Package\NorthwindOLTPtoOLAP">
<LayoutInfo>
<GraphLayout
Capacity="8" xmlns="clr-namespace:Microsoft.SqlServer.IntegrationServices.Designer.Model.Serialization;assembly=Microsoft.SqlServer.IntegrationServices.Graph" xmlns:mssgle="clr-namespace:Microsoft.SqlServer.Graph.LayoutEngine;assembly=Microsoft.SqlServer.Graph" xmlns:assembly="http://schemas.microsoft.com/winfx/2006/xaml">
<NodeLayout
Size="216,42.6666666666667"
Id="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView"
TopLeft="105.999996840954,44.9999986588955" />
<NodeLayout
Size="168,42.6666666666667"
Id="Package\NorthwindOLTPtoOLAP\SortedbyProductID"
TopLeft="223.99999332428,118.999996453524" />
<EdgeLayout
Id="Package\NorthwindOLTPtoOLAP.Paths[OLE DB Source Output]"
TopLeft="213.999996840954,87.6666653255622">
<EdgeLayout.Curve>
<mssgle:Curve
StartConnector="{assembly:Null}"
EndConnector="93.999996483326,31.3333311279618"
Start="0,0"
End="93.999996483326,23.8333311279618">
<mssgle:Curve.Segments>
<mssgle:SegmentCollection
Capacity="5">
<mssgle:LineSegment
End="0,11.6666655639809" />
<mssgle:CubicBezierSegment
Point1="0,11.6666655639809"
Point2="0,15.6666655639809"
Point3="4,15.6666655639809" />
<mssgle:LineSegment
End="89.999996483326,15.6666655639809" />
<mssgle:CubicBezierSegment
Point1="89.999996483326,15.6666655639809"
Point2="93.999996483326,15.6666655639809"
Point3="93.999996483326,19.6666655639809" />
<mssgle:LineSegment
End="93.999996483326,23.8333311279618" />
</mssgle:SegmentCollection>
</mssgle:Curve.Segments>
</mssgle:Curve>
</EdgeLayout.Curve>
<EdgeLayout.Labels>
<EdgeLabelCollection />
</EdgeLayout.Labels>
</EdgeLayout>
<NodeLayout
Size="172,42.6666666666667"
Id="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable"
TopLeft="291.249986980111,238.54998862505" />
<EdgeLayout
Id="Package\NorthwindOLTPtoOLAP.Paths[Sort Output]"
TopLeft="307.99999332428,161.666663120191">
<EdgeLayout.Curve>
<mssgle:Curve
StartConnector="{assembly:Null}"
EndConnector="69.2499936558308,76.8833255048592"
Start="0,0"
End="69.2499936558308,69.3833255048592">
<mssgle:Curve.Segments>
<mssgle:SegmentCollection
Capacity="5">
<mssgle:LineSegment
End="0,34.4416627524296" />
<mssgle:CubicBezierSegment
Point1="0,34.4416627524296"
Point2="0,38.4416627524296"
Point3="4,38.4416627524296" />
<mssgle:LineSegment
End="65.2499936558308,38.4416627524296" />
<mssgle:CubicBezierSegment
Point1="65.2499936558308,38.4416627524296"
Point2="69.2499936558308,38.4416627524296"
Point3="69.2499936558308,42.4416627524296" />
<mssgle:LineSegment
End="69.2499936558308,69.3833255048592" />
</mssgle:SegmentCollection>
</mssgle:Curve.Segments>
</mssgle:Curve>
</EdgeLayout.Curve>
<EdgeLayout.Labels>
<EdgeLabelCollection />
</EdgeLayout.Labels>
</EdgeLayout>
</GraphLayout>
</LayoutInfo>
</TaskHost>
<PipelineComponentMetadata
design-time-name="Package\NorthwindOLTPtoOLAP\DataSourceSalesProductView">
<Properties>
<Property>
<Name>DataSourceViewID</Name>
</Property>
<Property>
<Name>TableInfoObjectType</Name>
<Value
type="q2:string">View</Value>
</Property>
</Properties>
</PipelineComponentMetadata>
<PipelineComponentMetadata
design-time-name="Package\NorthwindOLTPtoOLAP\LoadtoDimProductTable">
<Properties>
<Property>
<Name>DataSourceViewID</Name>
</Property>
<Property>
<Name>TableInfoObjectType</Name>
<Value
type="q2:string">Table</Value>
</Property>
</Properties>
</PipelineComponentMetadata>
</Objects>]]></DTS:DesignTimeProperties>
</DTS:Executable>