-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRaleighCrimeLoad.dtsx
583 lines (583 loc) · 32.1 KB
/
RaleighCrimeLoad.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
<?xml version="1.0"?>
<DTS:Executable xmlns:DTS="www.microsoft.com/SqlServer/Dts"
DTS:refId="Package"
DTS:CreationDate="2/26/2017 10:49:37 AM"
DTS:CreationName="Microsoft.Package"
DTS:CreatorComputerName="WILLIAMSON"
DTS:CreatorName="WILLIAMSON\fease"
DTS:Description="Load the Raleigh police incident data set into a RaleighCrime database."
DTS:DTSID="{674CEF4D-754D-4059-AF74-CCE61F8CF9BA}"
DTS:ExecutableType="Microsoft.Package"
DTS:LastModifiedProductVersion="13.0.2165.0"
DTS:LocaleID="1033"
DTS:MaxErrorCount="0"
DTS:ObjectName="RaleighCrimeLoad"
DTS:ProtectionLevel="0"
DTS:VersionGUID="{15CB5881-ACD7-4C10-8891-C815E4F5A81C}">
<DTS:Property
DTS:Name="PackageFormatVersion">8</DTS:Property>
<DTS:ConnectionManagers>
<DTS:ConnectionManager
DTS:refId="Package.ConnectionManagers[DestinationConnectionOLEDB]"
DTS:CreationName="OLEDB"
DTS:DTSID="{A5A3D392-E64A-4D7D-93A5-CDD6147A26FA}"
DTS:ObjectName="DestinationConnectionOLEDB">
<DTS:ObjectData>
<DTS:ConnectionManager
DTS:ConnectionString="Data Source=.;Initial Catalog=RaleighCrime;Provider=SQLNCLI11;Integrated Security=SSPI;Auto Translate=false;" />
</DTS:ObjectData>
</DTS:ConnectionManager>
<DTS:ConnectionManager
DTS:refId="Package.ConnectionManagers[SourceConnectionFlatFile]"
DTS:CreationName="FLATFILE"
DTS:DTSID="{4C4A3324-3E01-488C-8B0B-2EE656D4FA6F}"
DTS:ObjectName="SourceConnectionFlatFile">
<DTS:ObjectData>
<DTS:ConnectionManager
DTS:Format="Delimited"
DTS:LocaleID="1033"
DTS:HeaderRowDelimiter="_x000D__x000A_"
DTS:ColumnNamesInFirstDataRow="True"
DTS:RowDelimiter=""
DTS:TextQualifier="_x0022_"
DTS:CodePage="1252"
DTS:ConnectionString="C:\SourceCode\TidyData\Data\Police.csv">
<DTS:FlatFileColumns>
<DTS:FlatFileColumn
DTS:ColumnType="Delimited"
DTS:ColumnDelimiter="_x002C_"
DTS:MaximumWidth="50"
DTS:DataType="129"
DTS:TextQualified="True"
DTS:ObjectName="LCR"
DTS:DTSID="{90155C6A-EBA3-4BC3-9893-D7EDB1B08051}"
DTS:CreationName="" />
<DTS:FlatFileColumn
DTS:ColumnType="Delimited"
DTS:ColumnDelimiter="_x002C_"
DTS:MaximumWidth="500"
DTS:DataType="129"
DTS:TextQualified="True"
DTS:ObjectName="LCR DESC"
DTS:DTSID="{438ED68A-6A15-4415-8541-258592349389}"
DTS:CreationName="" />
<DTS:FlatFileColumn
DTS:ColumnType="Delimited"
DTS:ColumnDelimiter="_x002C_"
DTS:MaximumWidth="50"
DTS:DataType="129"
DTS:TextQualified="True"
DTS:ObjectName="INC DATETIME"
DTS:DTSID="{62C01FCA-7733-4F02-A034-DA93F7BB6C03}"
DTS:CreationName="" />
<DTS:FlatFileColumn
DTS:ColumnType="Delimited"
DTS:ColumnDelimiter="_x002C_"
DTS:MaximumWidth="50"
DTS:DataType="129"
DTS:TextQualified="True"
DTS:ObjectName="BEAT"
DTS:DTSID="{050C3FE5-8D1C-4CD7-96C0-34FF7CA8187F}"
DTS:CreationName="" />
<DTS:FlatFileColumn
DTS:ColumnType="Delimited"
DTS:ColumnDelimiter="_x002C_"
DTS:MaximumWidth="50"
DTS:DataType="129"
DTS:TextQualified="True"
DTS:ObjectName="INC NO"
DTS:DTSID="{C404EE9B-04B6-453B-B594-4B0B51189669}"
DTS:CreationName="" />
<DTS:FlatFileColumn
DTS:ColumnType="Delimited"
DTS:ColumnDelimiter="_x000A_"
DTS:MaximumWidth="50"
DTS:DataType="129"
DTS:TextQualified="True"
DTS:ObjectName="LOCATION"
DTS:DTSID="{17D0F947-CEBB-4237-8DFD-ED839663C3BE}"
DTS:CreationName="" />
</DTS:FlatFileColumns>
</DTS:ConnectionManager>
</DTS:ObjectData>
</DTS:ConnectionManager>
</DTS:ConnectionManagers>
<DTS:Variables />
<DTS:Executables>
<DTS:Executable
DTS:refId="Package\Data Flow Task 1"
DTS:CreationName="Microsoft.Pipeline"
DTS:DelayValidation="True"
DTS:DTSID="{4D17FF50-40DC-4AA4-AEAF-417B10E15CF2}"
DTS:ExecutableType="Microsoft.Pipeline"
DTS:FailPackageOnFailure="True"
DTS:LocaleID="-1"
DTS:ObjectName="Data Flow Task 1"
DTS:TaskContact="Performs high-performance data extraction, transformation and loading;Microsoft Corporation; Microsoft SQL Server; (C) Microsoft Corporation; All Rights Reserved;http://www.microsoft.com/sql/support/default.asp;1">
<DTS:Variables />
<DTS:ObjectData>
<pipeline
defaultBufferSize="3145728"
version="1">
<components>
<component
refId="Package\Data Flow Task 1\Destination - Police"
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="Destination - Police"
usesDispositions="true"
validateExternalMetadata="False"
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].[Police]</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\Data Flow Task 1\Destination - Police.Connections[OleDbConnection]"
connectionManagerID="Package.ConnectionManagers[DestinationConnectionOLEDB]"
connectionManagerRefId="Package.ConnectionManagers[DestinationConnectionOLEDB]"
description="The OLE DB runtime connection used to access the database."
name="OleDbConnection" />
</connections>
<inputs>
<input
refId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input]"
errorOrTruncationOperation="Insert"
errorRowDisposition="FailComponent"
hasSideEffects="true"
name="Destination Input">
<inputColumns>
<inputColumn
refId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].Columns[LCR]"
cachedCodepage="1252"
cachedDataType="str"
cachedLength="50"
cachedName="LCR"
externalMetadataColumnId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].ExternalColumns[LCR]"
lineageId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[LCR]" />
<inputColumn
refId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].Columns[LCR DESC]"
cachedCodepage="1252"
cachedDataType="str"
cachedLength="500"
cachedName="LCR DESC"
externalMetadataColumnId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].ExternalColumns[LCR DESC]"
lineageId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[LCR DESC]" />
<inputColumn
refId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].Columns[INC DATETIME]"
cachedCodepage="1252"
cachedDataType="str"
cachedLength="50"
cachedName="INC DATETIME"
externalMetadataColumnId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].ExternalColumns[INC DATETIME]"
lineageId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[INC DATETIME]" />
<inputColumn
refId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].Columns[BEAT]"
cachedCodepage="1252"
cachedDataType="str"
cachedLength="50"
cachedName="BEAT"
externalMetadataColumnId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].ExternalColumns[BEAT]"
lineageId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[BEAT]" />
<inputColumn
refId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].Columns[INC NO]"
cachedCodepage="1252"
cachedDataType="str"
cachedLength="50"
cachedName="INC NO"
externalMetadataColumnId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].ExternalColumns[INC NO]"
lineageId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[INC NO]" />
<inputColumn
refId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].Columns[LOCATION]"
cachedCodepage="1252"
cachedDataType="str"
cachedLength="50"
cachedName="LOCATION"
externalMetadataColumnId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].ExternalColumns[LOCATION]"
lineageId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[LOCATION]" />
</inputColumns>
<externalMetadataColumns
isUsed="True">
<externalMetadataColumn
refId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].ExternalColumns[LCR]"
codePage="1252"
dataType="str"
length="50"
name="LCR" />
<externalMetadataColumn
refId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].ExternalColumns[LCR DESC]"
codePage="1252"
dataType="str"
length="500"
name="LCR DESC" />
<externalMetadataColumn
refId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].ExternalColumns[INC DATETIME]"
codePage="1252"
dataType="str"
length="50"
name="INC DATETIME" />
<externalMetadataColumn
refId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].ExternalColumns[BEAT]"
codePage="1252"
dataType="str"
length="50"
name="BEAT" />
<externalMetadataColumn
refId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].ExternalColumns[INC NO]"
codePage="1252"
dataType="str"
length="50"
name="INC NO" />
<externalMetadataColumn
refId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input].ExternalColumns[LOCATION]"
codePage="1252"
dataType="str"
length="50"
name="LOCATION" />
</externalMetadataColumns>
</input>
</inputs>
<outputs>
<output
refId="Package\Data Flow Task 1\Destination - Police.Outputs[OLE DB Destination Error Output]"
exclusionGroup="1"
isErrorOut="true"
name="OLE DB Destination Error Output"
synchronousInputId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input]">
<outputColumns>
<outputColumn
refId="Package\Data Flow Task 1\Destination - Police.Outputs[OLE DB Destination Error Output].Columns[ErrorCode]"
dataType="i4"
lineageId="Package\Data Flow Task 1\Destination - Police.Outputs[OLE DB Destination Error Output].Columns[ErrorCode]"
name="ErrorCode"
specialFlags="1" />
<outputColumn
refId="Package\Data Flow Task 1\Destination - Police.Outputs[OLE DB Destination Error Output].Columns[ErrorColumn]"
dataType="i4"
lineageId="Package\Data Flow Task 1\Destination - Police.Outputs[OLE DB Destination Error Output].Columns[ErrorColumn]"
name="ErrorColumn"
specialFlags="2" />
</outputColumns>
<externalMetadataColumns />
</output>
</outputs>
</component>
<component
refId="Package\Data Flow Task 1\Source - Police_csv"
componentClassID="Microsoft.FlatFileSource"
contactInfo="Flat File Source;Microsoft Corporation; Microsoft SQL Server; (C) Microsoft Corporation; All Rights Reserved; http://www.microsoft.com/sql/support;1"
description="Flat File Source"
localeId="1033"
name="Source - Police_csv"
usesDispositions="true"
version="1">
<properties>
<property
dataType="System.Boolean"
description="Specifies whether zero-length columns are treated as null."
name="RetainNulls">false</property>
<property
dataType="System.String"
description="Specifies the name of an output column containing the file name. If no name is specified, no output column containing the file name will be generated."
name="FileNameColumnName"></property>
</properties>
<connections>
<connection
refId="Package\Data Flow Task 1\Source - Police_csv.Connections[FlatFileConnection]"
connectionManagerID="Package.ConnectionManagers[SourceConnectionFlatFile]"
connectionManagerRefId="Package.ConnectionManagers[SourceConnectionFlatFile]"
name="FlatFileConnection" />
</connections>
<outputs>
<output
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output]"
name="Flat File Source Output">
<outputColumns>
<outputColumn
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[LCR]"
codePage="1252"
dataType="str"
errorOrTruncationOperation="Conversion"
errorRowDisposition="FailComponent"
externalMetadataColumnId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].ExternalColumns[LCR]"
length="50"
lineageId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[LCR]"
name="LCR"
truncationRowDisposition="FailComponent">
<properties>
<property
dataType="System.Boolean"
description="Indicates whether the column uses the faster, locale-neutral parsing routines."
name="FastParse">false</property>
<property
dataType="System.Boolean"
description="Indicates whether the data is in binary format."
name="UseBinaryFormat">false</property>
</properties>
</outputColumn>
<outputColumn
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[LCR DESC]"
codePage="1252"
dataType="str"
errorOrTruncationOperation="Conversion"
errorRowDisposition="FailComponent"
externalMetadataColumnId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].ExternalColumns[LCR DESC]"
length="500"
lineageId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[LCR DESC]"
name="LCR DESC"
truncationRowDisposition="FailComponent">
<properties>
<property
dataType="System.Boolean"
description="Indicates whether the column uses the faster, locale-neutral parsing routines."
name="FastParse">false</property>
<property
dataType="System.Boolean"
description="Indicates whether the data is in binary format."
name="UseBinaryFormat">false</property>
</properties>
</outputColumn>
<outputColumn
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[INC DATETIME]"
codePage="1252"
dataType="str"
errorOrTruncationOperation="Conversion"
errorRowDisposition="FailComponent"
externalMetadataColumnId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].ExternalColumns[INC DATETIME]"
length="50"
lineageId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[INC DATETIME]"
name="INC DATETIME"
truncationRowDisposition="FailComponent">
<properties>
<property
dataType="System.Boolean"
description="Indicates whether the column uses the faster, locale-neutral parsing routines."
name="FastParse">false</property>
<property
dataType="System.Boolean"
description="Indicates whether the data is in binary format."
name="UseBinaryFormat">false</property>
</properties>
</outputColumn>
<outputColumn
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[BEAT]"
codePage="1252"
dataType="str"
errorOrTruncationOperation="Conversion"
errorRowDisposition="FailComponent"
externalMetadataColumnId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].ExternalColumns[BEAT]"
length="50"
lineageId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[BEAT]"
name="BEAT"
truncationRowDisposition="FailComponent">
<properties>
<property
dataType="System.Boolean"
description="Indicates whether the column uses the faster, locale-neutral parsing routines."
name="FastParse">false</property>
<property
dataType="System.Boolean"
description="Indicates whether the data is in binary format."
name="UseBinaryFormat">false</property>
</properties>
</outputColumn>
<outputColumn
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[INC NO]"
codePage="1252"
dataType="str"
errorOrTruncationOperation="Conversion"
errorRowDisposition="FailComponent"
externalMetadataColumnId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].ExternalColumns[INC NO]"
length="50"
lineageId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[INC NO]"
name="INC NO"
truncationRowDisposition="FailComponent">
<properties>
<property
dataType="System.Boolean"
description="Indicates whether the column uses the faster, locale-neutral parsing routines."
name="FastParse">false</property>
<property
dataType="System.Boolean"
description="Indicates whether the data is in binary format."
name="UseBinaryFormat">false</property>
</properties>
</outputColumn>
<outputColumn
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[LOCATION]"
codePage="1252"
dataType="str"
errorOrTruncationOperation="Conversion"
errorRowDisposition="FailComponent"
externalMetadataColumnId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].ExternalColumns[LOCATION]"
length="50"
lineageId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].Columns[LOCATION]"
name="LOCATION"
truncationRowDisposition="FailComponent">
<properties>
<property
dataType="System.Boolean"
description="Indicates whether the column uses the faster, locale-neutral parsing routines."
name="FastParse">false</property>
<property
dataType="System.Boolean"
description="Indicates whether the data is in binary format."
name="UseBinaryFormat">false</property>
</properties>
</outputColumn>
</outputColumns>
<externalMetadataColumns
isUsed="True">
<externalMetadataColumn
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].ExternalColumns[LCR]"
codePage="1252"
dataType="str"
length="50"
name="LCR" />
<externalMetadataColumn
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].ExternalColumns[LCR DESC]"
codePage="1252"
dataType="str"
length="500"
name="LCR DESC" />
<externalMetadataColumn
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].ExternalColumns[INC DATETIME]"
codePage="1252"
dataType="str"
length="50"
name="INC DATETIME" />
<externalMetadataColumn
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].ExternalColumns[BEAT]"
codePage="1252"
dataType="str"
length="50"
name="BEAT" />
<externalMetadataColumn
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].ExternalColumns[INC NO]"
codePage="1252"
dataType="str"
length="50"
name="INC NO" />
<externalMetadataColumn
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output].ExternalColumns[LOCATION]"
codePage="1252"
dataType="str"
length="50"
name="LOCATION" />
</externalMetadataColumns>
</output>
<output
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Error Output]"
isErrorOut="true"
name="Flat File Source Error Output">
<outputColumns>
<outputColumn
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Error Output].Columns[Flat File Source Error Output Column]"
codePage="1252"
dataType="text"
description="Flat File Source Error Output Column"
lineageId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Error Output].Columns[Flat File Source Error Output Column]"
name="Flat File Source Error Output Column" />
<outputColumn
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Error Output].Columns[ErrorCode]"
dataType="i4"
lineageId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Error Output].Columns[ErrorCode]"
name="ErrorCode"
specialFlags="1" />
<outputColumn
refId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Error Output].Columns[ErrorColumn]"
dataType="i4"
lineageId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Error Output].Columns[ErrorColumn]"
name="ErrorColumn"
specialFlags="2" />
</outputColumns>
<externalMetadataColumns />
</output>
</outputs>
</component>
</components>
<paths>
<path
refId="Package\Data Flow Task 1.Paths[Flat File Source Output]"
endId="Package\Data Flow Task 1\Destination - Police.Inputs[Destination Input]"
name="Flat File Source Output"
startId="Package\Data Flow Task 1\Source - Police_csv.Outputs[Flat File Source Output]" />
</paths>
</pipeline>
</DTS:ObjectData>
</DTS:Executable>
<DTS:Executable
DTS:refId="Package\Preparation SQL Task 1"
DTS:CreationName="Microsoft.ExecuteSQLTask"
DTS:DTSID="{57E2983A-D7BE-4E21-9D20-40C0216AEB32}"
DTS:ExecutableType="Microsoft.ExecuteSQLTask"
DTS:FailPackageOnFailure="True"
DTS:LocaleID="-1"
DTS:ObjectName="Preparation SQL Task 1"
DTS:TaskContact="Execute SQL Task; Microsoft Corporation; SQL Server 2016; © 2015 Microsoft Corporation; All Rights Reserved;http://www.microsoft.com/sql/support/default.asp;1"
DTS:ThreadHint="0">
<DTS:Variables />
<DTS:ObjectData>
<SQLTask:SqlTaskData
SQLTask:Connection="{A5A3D392-E64A-4D7D-93A5-CDD6147A26FA}"
SQLTask:SqlStatementSource="CREATE TABLE [dbo].[Police] (
[LCR] varchar(50),
[LCR DESC] varchar(500),
[INC DATETIME] varchar(50),
[BEAT] varchar(50),
[INC NO] varchar(50),
[LOCATION] varchar(50)
)
GO
" xmlns:SQLTask="www.microsoft.com/sqlserver/dts/tasks/sqltask" />
</DTS:ObjectData>
</DTS:Executable>
</DTS:Executables>
<DTS:PrecedenceConstraints>
<DTS:PrecedenceConstraint
DTS:refId="Package.PrecedenceConstraints[{AEFF1507-1534-4BA3-915F-C9E3CED1D66F\}]"
DTS:CreationName=""
DTS:DTSID="{AEFF1507-1534-4BA3-915F-C9E3CED1D66F}"
DTS:From="Package\Preparation SQL Task 1"
DTS:LogicalAnd="True"
DTS:ObjectName="{AEFF1507-1534-4BA3-915F-C9E3CED1D66F}"
DTS:To="Package\Data Flow Task 1" />
</DTS:PrecedenceConstraints>
</DTS:Executable>