-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dimensional_Model__Project1.DM1
6067 lines (5663 loc) · 276 KB
/
Dimensional_Model__Project1.DM1
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
Repository_Object_Role
Repository_Object_Role_ID,Repository_Role_ID,Object_Type,Object_GUID,Object_ID,Save_Date
Repository_Role_Privilege
Repository_Role_Privilege_ID,Repository_Role_ID,Privilege_Name
Repository_Role
Repository_Role_ID,Role_Name
Repository_User_Info
Repository_User_Info_ID,User_Name,Machine_Name,User_ID,Machine_ID,Flags
Project_Link
Project_Link_ID,Parent_Project_ID,Child_Project_ID,Ultimate_Parent_Project_ID,RootNode
Defaults
DefaultId,Dictionary_Object_ID,DefaultNameId,DefaultTextId,NSTFlag,Global_User_ID,Row_Time_Stamp
Rules
RuleId,Dictionary_Object_ID,RuleNameId,RuleTextId,Global_User_ID,NSTFlag,Row_Time_Stamp
UserDatatype
UserDatatypeId,Dictionary_Object_ID,Length,Scale,Nullable,CheckConstraintId,DeclaredDefaultId,UserDatatype,DatatypeId,DefaultId,RuleId,Datatype_PDId,Global_User_ID,Row_Time_Stamp
Domain
DomainId,Dictionary_Object_ID,Length,Scale,Nullable,IdentityColumn,IdentitySeed,IdentityIncrement,DeclaredDefaultId,CheckConstraintId,DomainNameId,ColumnNameId,DatatypeId,UserDatatype,DefaultId,RuleId,UserDatatypeId,Reference_Value_ID,Naming_Standards_Template_ID,AttributeName_ID,Description_ID,Notes_ID,NSTFlag,IsCategory,Datatype_PDId,Global_User_ID,Row_Time_Stamp
Version
VersionId,Version_ID,Copyright,Global_User_ID,Row_Time_Stamp
2000,1,"Copyright (c) IDERA, Inc. 1995-2023",0,0
Diagram
DiagramId,Version_ID,VersionId,LastUpdate,CreateDate,ActiveModel,ActiveSubmodel,VSplitterPosition,X,Y,Width,Height,DiagramNameId,AuthorId,CompanyId,VersionNoId,CopyrightStringId,DefinitionId,UnificationOptionId,FileNameId,CopyrightYearStringId,DiagramName,CodePage,SignatureGUID,ReleaseName,Flags,Global_User_ID,Row_Time_Stamp
1,1,2000,02/25/2024 17:06:55G,02/25/2024 03:19:54G,3,1,180,0,0,0,0,80,0,0,0,0,0,21,80,0,Dimensional_Model__Project1.DM1,1252,NULL,"",0,1,0
GraphManager_Properties
GraphManager_Properties_ID,DiagramId,FixedSize,FixedPosition,HorizontalSpacingBetweenEdges,HorizontalSpacingBetweenNodes,VerticalSpacingBetweenEdges,VerticalSpacingBetweenNodes,ApplyStyleDeeply,DrawingFitting,HorizontalSpacingBetweenIntergraphEdges,VerticalSpacingBetweenIntergraphEdges,Global_User_ID
1,1,0,0,12,20,12,20,0,1,12,12,287
Model
DiagramId,ModelId,Model_ID,ModelType,PlatformId,NamePrefix,SpaceHandling,CaseHandling,GenPrimaryKey,GenAlternateKey,GenInversionEntry,GenForeignKey,Notation,ModelNameId,RowOverhead,TableOverhead,IndexOverhead,BlobOverhead,BlobBlockSize,Platform_PDId,Global_User_ID,Row_Time_Stamp
1,1,1,7,0,NULL,P,P,0,0,0,0,DASHED_IE,3,0,NULL,0,NULL,0,0,3,0
1,3,8,5,118,"",P,P,1,0,0,0,DASHED_IE,122,0,1.000000,0,1.000000,2048,105,1226,0
ModelOption
DiagramId,ModelId,OptionType,ModelOption_ID,Model_ID,OptionValue,Global_User_ID,Row_Time_Stamp
1,1,Display,98,1,0,12,0
1,3,Scale,131,8,0,1232,0
1,3,Containment,141,8,1,1234,0
1,1,RoleNmPref,100,1,"",14,0
1,1,Edit LogNames,104,1,0,19,0
1,1,Width,95,1,10,8,0
1,3,NotNull,132,8,0,1233,0
1,1,Datatype,94,1,CH,7,0
1,3,Datatype,129,8,CH,1230,0
1,3,Edit LogNames,139,8,0,1242,0
1,1,Containment,106,1,1,11,0
1,1,NameMax,91,1,65,4,0
1,1,Scale,96,1,0,9,0
1,1,Logical View Parser Platform,108,1,1,21,0
1,1,NameSync,92,1,1,5,0
1,3,NameSync,127,8,2,1228,0
1,3,Ignore Physical Model Name Length,142,8,0,1243,0
1,3,ColmOrd,138,8,1,1240,0
1,1,NotNull,97,1,0,10,0
1,1,BkgColor,101,1,16777215,15,0
1,3,BkgColor,136,8,16777215,1238,0
1,1,Attr/Column NameSync,93,1,2,6,0
1,1,CaseShift,102,1,0,16,0
1,3,Display,133,8,0,1235,0
1,3,CaseShift,137,8,0,1239,0
1,3,Zoom,134,8,0,1236,0
1,3,RoleNmPref,135,8,"",1237,0
1,1,ColmOrd,103,1,0,17,0
1,3,Width,130,8,10,1231,0
1,1,PK Indexes Sequencing,107,1,1,18,0
1,1,Zoom,99,1,0,13,0
1,3,FK Definition Note Synchronization,140,8,1,1245,0
1,1,FK Definition Note Synchronization,105,1,1,22,0
1,3,Attr/Column NameSync,128,8,2,1229,0
1,3,NameMax,126,8,0,1227,0
Submodel
DiagramId,ModelId,SubmodelId,Submodel_ID,Model_ID,SubmodelName,DescendantUpdateFlags,DefinitionId,NoteId,Subject_Area_ID,Global_User_ID,Row_Time_Stamp
1,1,1,1,1,Main Model,0,0,0,0,24,0
1,3,1,8,8,Main Model,0,0,0,0,1247,0
SubmodelLink
SubmodelLink_ID,Model_ID,Parent_ID,Child_ID,UltimateParent_ID,NodeLevel,IsBottomLevel,Global_User_ID
DiagramDisplay
DiagramId,ModelId,SubmodelId,DiagramDisplay_ID,Submodel_ID,PlatformId,Animate,ZoomFactor,HviewSize,VviewSize,HorizontalScrollPosition,VerticalScrollPosition,PageOrientation,PageSize,DisplayFormat,EntityDisplayInfo,ViewDisplayFormat,ViewDisplayInfo,Shadow,CompleteRoleName,ShowVerbs,ShowCardinality,MethodologyId,StraightRelLine,PageBoundary,ShowViewRelationship,ShowView,HideTrigger,Global_User_ID,Row_Time_Stamp,ShowSchemaObjEdge,ShowSchemaObj,SchemaObjDisplayFormat,ShowRelationshipName,ShowLogicalRelationshipName,ShowTriggerLabel,ShowShape,ShowShapeEdge,ShowShapeName,ShowShapeEdgeName,ShowShapeEdgeVerbs,TransformationDisplayFormat
1,1,1,1,1,0,0,8999,0,0,-59,-270,1,1,8,3264,1,0,1,0,1,1,0,0,0,0,0,1,25,0,1,30,7,0,0,0,0,0,1,0,1,2
1,3,1,8,8,0,0,7288,0,0,-189,-95,1,1,9,3264,1,0,1,0,1,1,0,0,0,0,0,0,1248,0,1,30,7,0,0,0,0,0,1,0,1,2
GridDisplay
DiagramId,ModelId,SubmodelId,GridDisplay_ID,Submodel_ID,Show,Snap,HorizontalSpacing,VerticalSpacing,HorizontalGridsPerLine,VericalGridsPerLine,Units,Global_User_ID,Row_Time_Stamp
1,1,1,1,1,0,0,2500,2500,3,3,0,26,0
1,3,1,8,8,0,0,2500,2500,3,3,0,1249,0
Graph_Geometry
Graph_Geometry_ID,Submodel_ID,Undirected,ProportionalLeftSpacing,ProportionalRightSpacing,ProportionalBottomSpacing,ProportionalTopSpacing,ConstantLeftSpacing,ConstantRightSpacing,ConstantBottomSpacing,ConstantTopSpacing,LayoutStyle,HasCircularLayout,HasHierarchicalLayout,HasOrthogonalLayout,HasSymmetricLayout,HasTreeLayout,NestedViewBottomConstantSpacing,NestedViewBottomProportionalSpacing,NestedViewLeftConstantSpacing,NestedViewLeftProportionalSpacing,NestedViewRightConstantSpacing,NestedViewRightProportionalSpacing,NestedViewTopConstantSpacing,NestedViewTopProportionalSpacing,MultiEdgeSpacing,Global_User_ID
6,1,0,0,0,0,0,20,20,20,20,0,0,0,0,0,0,8,0,8,0,8,0,8,0,8,973
8,8,0,0,0,0,0,20,20,20,20,0,0,0,0,0,0,8,0,8,0,8,0,8,0,8,1456
Disconnected_Nodes_Layout
Disconnected_Nodes_Layout_ID,Submodel_ID,Detect,ProportionalRowSpacing,ProportionalColumnSpacing,ConstantRowSpacing,ConstantColumnSpacing,LayoutStyle,PackingStyle,TilingStyle,TileByName,Stagger,StaggerBy,Global_User_ID
6,1,1,70,70,20,20,1,0,0,1,0,12,974
8,8,1,70,70,20,20,1,0,0,1,0,12,1457
Components_Layout
Components_Layout_ID,Submodel_ID,Detect,ProportionalRowSpacing,ProportionalColumnSpacing,ConstantRowSpacing,ConstantColumnSpacing,LayoutStyle,PackingStyle,TilingStyle,Stagger,StaggerBy,Global_User_ID
6,1,1,70,70,20,20,0,0,1,0,12,975
8,8,1,70,70,20,20,0,0,1,0,12,1458
Circular_Layout
Circular_Layout_ID,Submodel_ID,Degree,ClusterByGroupID,ClusterByIPAddress,ClusterByBiConnectivity,AutomateGroupIDs,MinNumberOfNodesInCluster,MaxNumberOfNodesInCluster,DisableMinNumberOfNodesInCluster,DisableMaxNumberOfNodesInCluster,ProportionalNodeSpacing,ConstantNodeSpacing,IncrementalWithinComponentLayout,IncrementalDisconnectedNodesLayout,IncrementalComponentsLayout,AccumulatedInternalGroupID,ProportionalRadialSpacing,ProportionalTangentialSpacing,ConstantRadialSpacing,ConstantTangentialSpacing,RadialAlignment,NodeSpacing,ClusterSpacing,ClusterLayoutStyle,MinNumberOfClusters,MaxNumberOfClusters,ClusterSizeFactor,Quality,Global_User_ID
6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,50.000000,3,1,2147483647,1.000000,1,976
8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,50.000000,3,1,2147483647,1.000000,1,1459
Hierarchical_Layout
Hierarchical_Layout_ID,Submodel_ID,DiscardLevels,DisableMinSlopePerMil,MinSlopePerMil,KeepLevelPositionInIncrementalLayout,RespectFlowInIncrementalLayout,OrthogonalRouting,VariableLevelSpacing,HorizontalEdgeSpacing,VerticalEdgeSpacing,LevelOrientation,LevelAlignment,Quality,ConstantLevelSpacing,ProportionalLevelSpacing,ConstantNodeSpacing,ProportionalNodeSpacing,UsePorts,MergeEdgeChannels,CalculatedSize,PortSharingMaximization,ReduceCrossingsInIncrementalLayout,IncrementalWithinComponentLayout,IncrementalDisconnectedNodesLayout,IncrementalComponentsLayout,StaggerEndNodes,StaggerEndNodesBy,EdgeSpacing,Global_User_ID
6,1,0,0,200,0,0,1,1,12,12,3,0,1,50,0,20,100,0,0,1,1,0,0,0,0,0,20,12,977
8,8,0,0,200,0,0,1,1,12,12,3,0,1,50,0,20,100,0,0,1,1,0,0,0,0,0,20,12,1460
Orthogonal_Layout
Orthogonal_Layout_ID,Submodel_ID,UpwardDrawing,NumberOfCompactions,HorizontalNodeSpacing,VerticalNodeSpacing,HorizontalEdgeSpacing,VerticalEdgeSpacing,UsePorts,SideOffsetPerMil,KeepNodeSizes,RespectNodePositionsInIncrementalLayout,IncrementalWithinComponentLayout,IncrementalDisconnectedNodesLayout,IncrementalComponentsLayout,Global_User_ID
6,1,0,1,20,20,60,60,0,250,0,0,0,0,0,978
8,8,0,1,20,20,60,60,0,250,0,0,0,0,0,1461
Symmetric_Layout
Symmetric_Layout_ID,Submodel_ID,NodeSpacing,RandomSeed,RouteEdges,DegreeSpacing,PreventNodeOverlaping,IncrementalWithinComponentLayout,IncrementalDisconnectedNodesLayout,IncrementalComponentsLayout,Quality,Global_User_ID
6,1,10,1,0,0,0,0,0,0,1,979
8,8,10,1,0,0,0,0,0,0,1,1462
Tree_Layout
Tree_Layout_ID,Submodel_ID,RouteNonTreeEdgesWithinLevels,RouteNonTreeEdgesBetweenLevels,ConstantSiblingSpacing,ProportionalSiblingSpacing,ConstantBranchSpacing,ProportionalBranchSpacing,ConstantLevelSpacing,ProportionalLevelSpacing,HorizontalEdgeSpacing,LevelAlignment,IncrementalWithinComponentLayout,IncrementalDisconnectedNodesLayout,IncrementalComponentsLayout,Global_User_ID
6,1,1,0,40,0,40,0,40,0,12,0,0,0,0,980
8,8,1,0,40,0,40,0,40,0,12,0,0,0,0,1463
FontProperty
PropertyId,FontProperty_ID,Description,Global_User_ID,Row_Time_Stamp
0,0,"",0,0
1750,5,Foreign Keys,0,0
32801,56,Primary Key Index,0,0
1751,6,Foreign Non-Keys,0,0
40003,87,Business Data Object Title,0,0
4303,0,Relationship Name,0,0
32803,57,Unique Indexes,0,0
4305,0,Relationship Business Name,0,0
35757,63,Transformation Name,0,0
5359,1,Individual Attribute Font,0,0
35759,69,Transformation Inputs,0,0
5360,8,Individual View Field Font,0,0
35761,70,Transformation Outputs,0,0
32762,33,Indexes,0,0
32764,37,Attachments,0,0
1765,7,View Name,0,0
1665,2,Entity Name,0,0
35116,59,Data Security,0,0
32766,35,Triggers,0,0
1666,3,Primary Keys,0,0
1667,4,Attributes,0,0
1668,0,Verbs,0,0
32768,38,Dimensional Type Label,0,0
1669,0,Text Blocks,0,0
1670,0,Page Number,0,0
35771,75,Transformation Definition,0,0
35772,76,Transformation Code,0,0
5374,0,Schema Object,0,0
1778,0,Title Block Font,0,0
5432,0,Shape,0,0
32833,58,Non-Unique Indexes,0,0
5435,50,Shape Text,0,0
1787,9,View Fields,0,0
36988,80,Expanded Subject Area Name,0,0
36992,84,Collapsed Subject Area Name,0,0
FontDefault
DiagramId,ModelId,SubmodelId,PropertyId,FontDefault_ID,FontProperty_ID,Submodel_ID,Face,Size,Bold,Italic,Underline,Strikeout,Escapement,Orientation,CharacterSet,OutputPrecision,ClipPrecision,Quality,Pitch,Family,Global_User_ID,Row_Time_Stamp
1,3,1,1668,229,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1267,0
1,3,1,1669,230,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1271,0
1,3,1,1750,214,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1252,0
1,1,1,35761,27,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,123,0
1,1,1,32764,12,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,40,0
1,3,1,35771,239,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1347,0
1,3,1,1751,215,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1253,0
1,3,1,1670,212,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1250,0
1,3,1,35772,240,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1348,0
1,1,1,32766,14,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,38,0
1,3,1,36988,235,0,8,Arial,-12.000000,700,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1335,0
1,1,1,35116,13,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,41,0
1,1,1,32768,7,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,39,0
1,1,1,1665,2,0,1,Arial,-12.000000,800,0,0,0,0.000000,0.000000,1,3,2,1,2,32,28,0
1,1,1,1666,5,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,31,0
1,3,1,36992,234,0,8,Arial,-12.000000,700,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1333,0
1,1,1,1667,6,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,32,0
1,1,1,1668,18,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,44,0
1,1,1,1669,19,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,48,0
1,1,1,1750,3,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,29,0
1,1,1,35771,28,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,124,0
1,1,1,1751,4,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,30,0
1,1,1,1670,1,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,27,0
1,1,1,35772,29,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,125,0
1,1,1,36988,24,0,1,Arial,-12.000000,700,0,0,0,0.000000,0.000000,1,3,2,1,2,32,112,0
1,3,1,1765,227,0,8,Arial,-12.000000,800,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1265,0
1,1,1,36992,23,0,1,Arial,-12.000000,700,0,0,0,0.000000,0.000000,1,3,2,1,2,32,110,0
1,3,1,40003,244,0,8,Arial,-12.000000,800,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1295,0
1,1,1,1765,16,0,1,Arial,-12.000000,800,0,0,0,0.000000,0.000000,1,3,2,1,2,32,42,0
1,3,1,1778,231,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1272,0
1,3,1,32801,220,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1258,0
1,3,1,32803,221,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1259,0
1,1,1,40003,178,0,1,Arial,-12.000000,800,0,0,0,0.000000,0.000000,1,3,2,1,2,32,72,0
1,3,1,5432,232,0,8,Arial,-12.000000,700,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1326,0
1,3,1,1787,228,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1266,0
1,1,1,1778,20,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,49,0
1,1,1,32801,9,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,35,0
1,1,1,32803,10,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,36,0
1,3,1,5435,233,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1327,0
1,3,1,4303,241,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1268,0
1,3,1,4305,242,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1269,0
1,1,1,5432,21,0,1,Arial,-12.000000,700,0,0,0,0.000000,0.000000,1,3,2,1,2,32,103,0
1,1,1,1787,17,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,43,0
1,1,1,5435,22,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,104,0
1,1,1,4303,175,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,45,0
1,1,1,4305,176,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,46,0
1,3,1,5374,243,0,8,Arial,-12.000000,800,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1291,0
1,3,1,32833,222,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1260,0
1,3,1,35757,236,0,8,Arial,-12.000000,700,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1344,0
1,1,1,5374,177,0,1,Arial,-12.000000,800,0,0,0,0.000000,0.000000,1,3,2,1,2,32,68,0
1,1,1,32833,11,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,37,0
1,3,1,35759,237,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1345,0
1,3,1,32762,219,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1257,0
1,3,1,35761,238,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1346,0
1,3,1,32764,223,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1263,0
1,3,1,32766,225,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1261,0
1,3,1,35116,224,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1264,0
1,3,1,32768,218,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1262,0
1,3,1,1665,213,0,8,Arial,-12.000000,800,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1251,0
1,1,1,35757,25,0,1,Arial,-12.000000,700,0,0,0,0.000000,0.000000,1,3,2,1,2,32,121,0
1,3,1,1666,216,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1254,0
1,3,1,1667,217,0,8,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,1255,0
1,1,1,35759,26,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,122,0
1,1,1,32762,8,0,1,Arial,-12.000000,400,0,0,0,0.000000,0.000000,1,3,2,1,2,32,34,0
ColorProperty
PropertyId,ColorProperty_ID,Description,Global_User_ID,Row_Time_Stamp
35760,71,Transformation Inputs,0,0
40000,85,Business Data Object Foreground,0,0
0,0,"",0,0
5361,25,Supertypes,0,0
40001,86,Business Data Object Background,0,0
5362,10,Individual Attribute Color,0,0
35762,72,Transformation Outputs,0,0
40002,88,Business Data Object Title,0,0
32802,53,Primary Key Index,0,0
1682,0,Shadow,0,0
5363,21,Individual View Field Color,0,0
35763,66,Transformation Background,0,0
1683,0,Text Background,0,0
35764,67,Transformation Foreground,0,0
1684,0,Text Foreground,0,0
5449,46,Shape Foreground,0,0
5450,47,Shape Background,0,0
5371,29,Schema Object Foreground,0,0
5372,30,Schema Object Background,0,0
35773,74,Transformation Code,0,0
5373,0,Schema Object Title,0,0
35774,73,Transformation Definition,0,0
5375,31,Schema Object Relationship,0,0
1775,0,Title Block Background,0,0
1776,0,Title Block Border,0,0
1777,0,Title Block Text Color,0,0
36985,79,Expanded Subject Area Name,0,0
36986,77,Expanded Subject Area Foreground,0,0
1786,22,View Field Text,0,0
36987,78,Expanded Subject Area Background,0,0
36989,83,Collapsed Subject Area Name,0,0
36990,81,Collapsed Subject Area Name Foreground,0,0
36991,82,Collapsed Subject Area Name Background,0,0
32832,54,Unique Indexes,0,0
32834,55,Non-Unique Indexes,0,0
32759,45,Dimensional Type Label,0,0
32763,40,Indexes,0,0
35724,65,Data Stream,0,0
32765,44,Attachments,0,0
5335,12,Entity Foreground,0,0
5336,13,Entity Background,0,0
5337,11,Entity Title,0,0
5338,17,Inherited Primary Keys,0,0
5339,15,Non-Inherited Primary Keys,0,0
5340,18,Inherited Non-Keys,0,0
5341,16,Non-Inherited Non-Keys,0,0
1741,0,Page Foreground,0,0
5342,24,Relationships,0,0
1742,0,Page Number,0,0
5343,19,View Foreground,0,0
1743,0,Off Page Foreground,0,0
5344,20,View Background,0,0
1744,0,Off Page Background,0,0
5345,23,View Title,0,0
5347,26,View Relationships,0,0
1748,0,Verb Text,0,0
1749,0,Text Block Border,0,0
5431,0,Shape Title,0,0
5434,52,Line,0,0
35115,60,Data Security,0,0
5436,51,Shape Text,0,0
1676,0,Diagram Background,0,0
35758,68,Transformation Name,0,0
ColorDefault
DiagramId,ModelId,SubmodelId,PropertyId,ColorDefault_ID,ColorProperty_ID,Submodel_ID,Red,Green,Blue,InheritColorFlag,Global_User_ID,Row_Time_Stamp
1,1,1,35758,53,0,1,0,0,0,0,115,0
1,3,1,36985,472,0,8,0,0,0,0,1334,0
1,3,1,36986,469,0,8,0,0,0,0,1330,0
1,1,1,35760,54,0,1,0,0,0,0,116,0
1,3,1,36987,470,0,8,255,255,255,0,1331,0
1,1,1,35762,55,0,1,0,0,0,0,117,0
1,1,1,32802,9,0,1,0,0,0,0,58,0
1,3,1,36989,471,0,8,0,0,0,0,1332,0
1,1,1,35763,52,0,1,255,255,255,0,114,0
1,3,1,36990,467,0,8,0,0,0,0,1328,0
1,1,1,35764,51,0,1,0,0,0,0,113,0
1,3,1,36991,468,0,8,255,255,255,0,1329,0
1,1,1,5431,42,0,1,0,0,0,0,100,0
1,3,1,1775,447,0,8,255,255,255,0,1305,0
1,1,1,35773,57,0,1,0,0,0,0,119,0
1,3,1,1776,448,0,8,0,0,0,0,1306,0
1,1,1,35774,56,0,1,0,0,0,0,118,0
1,1,1,5434,44,0,1,0,0,0,0,102,0
1,3,1,1777,443,0,8,0,0,0,0,1301,0
1,1,1,5436,43,0,1,0,0,0,0,101,0
1,3,1,5335,456,0,8,128,128,255,0,1315,0
1,1,1,1741,33,0,1,0,0,0,0,91,0
1,3,1,5336,457,0,8,255,255,255,0,1316,0
1,1,1,1742,2,0,1,0,0,0,0,51,0
1,3,1,5337,425,0,8,0,0,0,0,1275,0
1,1,1,1743,28,0,1,0,0,0,0,86,0
1,3,1,1786,440,0,8,0,0,0,0,1290,0
1,3,1,5338,426,0,8,255,0,0,0,1276,0
1,1,1,1744,29,0,1,128,128,128,0,87,0
1,3,1,5339,428,0,8,0,0,0,0,1278,0
1,3,1,5340,427,0,8,0,0,255,0,1277,0
1,3,1,5341,429,0,8,0,0,0,0,1279,0
1,3,1,5342,444,0,8,0,0,0,0,1302,0
1,1,1,1748,19,0,1,0,0,0,0,76,0
1,3,1,5343,445,0,8,0,0,0,0,1303,0
1,1,1,5449,40,0,1,0,0,0,0,98,0
1,1,1,1749,38,0,1,0,0,0,0,96,0
1,3,1,5344,446,0,8,192,192,192,0,1304,0
1,1,1,5450,41,0,1,255,255,255,0,99,0
1,3,1,5345,439,0,8,0,0,0,0,1289,0
1,1,1,32832,10,0,1,0,0,0,0,59,0
1,3,1,5347,449,0,8,0,0,0,0,1308,0
1,1,1,32834,11,0,1,0,0,0,0,60,0
1,1,1,36985,50,0,1,0,0,0,0,111,0
1,1,1,36986,47,0,1,0,0,0,0,107,0
1,1,1,36987,48,0,1,255,255,255,0,108,0
1,1,1,36989,49,0,1,0,0,0,0,109,0
1,1,1,36990,45,0,1,0,0,0,0,105,0
1,1,1,36991,46,0,1,255,255,255,0,106,0
1,3,1,35115,436,0,8,0,0,0,0,1286,0
1,3,1,40000,486,0,8,0,0,0,0,1296,0
1,3,1,40001,485,0,8,255,255,255,0,1297,0
1,1,1,1775,25,0,1,255,255,255,0,82,0
1,3,1,40002,487,0,8,0,0,0,0,1298,0
1,1,1,1776,26,0,1,0,0,0,0,83,0
1,3,1,5371,483,0,8,0,0,0,0,1292,0
1,1,1,1777,21,0,1,0,0,0,0,78,0
1,3,1,5372,482,0,8,255,255,255,0,1293,0
1,3,1,5373,484,0,8,0,0,0,0,1294,0
1,3,1,5375,488,0,8,0,0,0,0,1307,0
1,3,1,1676,452,0,8,255,255,255,0,1311,0
1,1,1,5335,34,0,1,128,128,255,0,92,0
1,1,1,5336,35,0,1,255,255,255,0,93,0
1,3,1,32759,434,0,8,0,0,0,0,1287,0
1,1,1,5337,3,0,1,0,0,0,0,52,0
1,1,1,1786,18,0,1,0,0,0,0,67,0
1,1,1,5338,4,0,1,255,0,0,0,53,0
1,1,1,5339,6,0,1,0,0,0,0,55,0
1,3,1,1682,458,0,8,127,127,127,0,1317,0
1,1,1,5340,5,0,1,0,0,255,0,54,0
1,3,1,1683,461,0,8,255,255,255,0,1320,0
1,3,1,32763,430,0,8,0,0,0,0,1280,0
1,1,1,5341,7,0,1,0,0,0,0,56,0
1,3,1,35724,480,0,8,0,0,0,0,1343,0
1,3,1,1684,442,0,8,0,0,0,0,1300,0
1,1,1,5342,22,0,1,0,0,0,0,79,0
1,3,1,32765,435,0,8,0,0,0,0,1285,0
1,1,1,5343,23,0,1,0,0,0,0,80,0
1,1,1,5344,24,0,1,192,192,192,0,81,0
1,1,1,5345,17,0,1,0,0,0,0,66,0
1,1,1,5347,27,0,1,0,0,0,0,85,0
1,1,1,35115,14,0,1,0,0,0,0,63,0
1,1,1,40000,353,0,1,0,0,0,0,73,0
1,1,1,40001,352,0,1,255,255,255,0,74,0
1,1,1,40002,354,0,1,0,0,0,0,75,0
1,1,1,5371,350,0,1,0,0,0,0,69,0
1,1,1,5372,349,0,1,255,255,255,0,70,0
1,1,1,5373,351,0,1,0,0,0,0,71,0
1,1,1,5375,355,0,1,0,0,0,0,84,0
1,3,1,35758,475,0,8,0,0,0,0,1338,0
1,1,1,1676,30,0,1,255,255,255,0,88,0
1,3,1,35760,476,0,8,0,0,0,0,1339,0
1,1,1,32759,12,0,1,0,0,0,0,64,0
1,3,1,35762,477,0,8,0,0,0,0,1340,0
1,3,1,32802,431,0,8,0,0,0,0,1281,0
1,3,1,35763,474,0,8,255,255,255,0,1337,0
1,3,1,35764,473,0,8,0,0,0,0,1336,0
1,1,1,1682,36,0,1,127,127,127,0,94,0
1,1,1,1683,39,0,1,255,255,255,0,97,0
1,1,1,32763,8,0,1,0,0,0,0,57,0
1,1,1,35724,58,0,1,0,0,0,0,120,0
1,1,1,1684,20,0,1,0,0,0,0,77,0
1,1,1,32765,13,0,1,0,0,0,0,62,0
1,3,1,5431,464,0,8,0,0,0,0,1323,0
1,3,1,35773,479,0,8,0,0,0,0,1342,0
1,3,1,35774,478,0,8,0,0,0,0,1341,0
1,3,1,5434,466,0,8,0,0,0,0,1325,0
1,3,1,5436,465,0,8,0,0,0,0,1324,0
1,3,1,1741,455,0,8,0,0,0,0,1314,0
1,3,1,1742,424,0,8,0,0,0,0,1274,0
1,3,1,1743,450,0,8,0,0,0,0,1309,0
1,3,1,1744,451,0,8,128,128,128,0,1310,0
1,3,1,1748,441,0,8,0,0,0,0,1299,0
1,3,1,5449,462,0,8,0,0,0,0,1321,0
1,3,1,1749,460,0,8,0,0,0,0,1319,0
1,3,1,5450,463,0,8,255,255,255,0,1322,0
1,3,1,32832,432,0,8,0,0,0,0,1282,0
1,3,1,32834,433,0,8,0,0,0,0,1283,0
Where_Used_PD
Where_Used_PD_ID,A_Model_ID,B_Model_ID,A_MetaTable_ID,B_MetaTable_ID,A_Table_Row_ID,B_Table_Row_ID,Flags,Global_User_ID
1060,8,1,3,3,145,39,0,0
1061,8,1,3,3,142,64,0,0
1062,8,1,3,3,143,70,0,0
1063,8,1,1,1,24,12,0,0
1064,8,1,3,3,151,54,0,0
981,1,8,1,1,2,19,0,0
982,1,8,3,3,1,115,0,0
983,1,8,3,3,2,116,0,0
984,1,8,3,3,3,117,0,0
985,1,8,3,3,4,118,0,0
986,1,8,3,3,5,119,0,0
987,1,8,3,3,63,120,0,0
988,1,8,3,3,69,121,0,0
989,1,8,1,1,4,20,0,0
990,1,8,3,3,11,127,0,0
991,1,8,3,3,72,129,0,0
992,1,8,3,3,12,128,0,0
993,1,8,3,3,13,122,0,0
994,1,8,3,3,14,123,0,0
995,1,8,3,3,15,124,0,0
996,1,8,3,3,62,125,0,0
997,1,8,3,3,68,126,0,0
998,1,8,1,1,6,21,0,0
999,1,8,3,3,21,130,0,0
1000,1,8,3,3,71,135,0,0
1001,1,8,3,3,25,132,0,0
1002,1,8,3,3,61,133,0,0
1003,1,8,3,3,67,134,0,0
1004,1,8,1,1,8,22,0,0
1005,1,8,3,3,30,136,0,0
1006,1,8,3,3,33,139,0,0
1007,1,8,3,3,31,137,0,0
1008,1,8,3,3,32,138,0,0
1009,1,8,3,3,65,140,0,0
1010,1,8,3,3,66,141,0,0
1011,1,8,1,1,10,23,0,0
1012,1,8,3,3,40,144,0,0
1013,1,8,3,3,42,149,0,0
1014,1,8,3,3,44,150,0,0
1015,1,8,3,3,48,146,0,0
1016,1,8,3,3,49,147,0,0
1017,1,8,3,3,60,148,0,0
1018,1,8,3,3,39,145,0,0
1019,1,8,3,3,64,142,0,0
1020,1,8,3,3,70,143,0,0
1021,1,8,1,1,12,24,0,0
1022,1,8,3,3,54,151,0,0
1023,8,1,1,1,19,2,0,0
1024,8,1,3,3,115,1,0,0
1025,8,1,3,3,116,2,0,0
1026,8,1,3,3,117,3,0,0
1027,8,1,3,3,118,4,0,0
1028,8,1,3,3,119,5,0,0
1029,8,1,3,3,120,63,0,0
1030,8,1,3,3,121,69,0,0
1031,8,1,1,1,20,4,0,0
1032,8,1,3,3,127,11,0,0
1033,8,1,3,3,128,12,0,0
1034,8,1,3,3,122,13,0,0
1035,8,1,3,3,123,14,0,0
1036,8,1,3,3,124,15,0,0
1037,8,1,3,3,125,62,0,0
1038,8,1,3,3,126,68,0,0
1039,8,1,3,3,129,72,0,0
1040,8,1,1,1,21,6,0,0
1041,8,1,3,3,130,21,0,0
1042,8,1,3,3,135,71,0,0
1043,8,1,3,3,132,25,0,0
1044,8,1,3,3,133,61,0,0
1045,8,1,3,3,134,67,0,0
1046,8,1,1,1,22,8,0,0
1047,8,1,3,3,136,30,0,0
1048,8,1,3,3,139,33,0,0
1049,8,1,3,3,137,31,0,0
1050,8,1,3,3,138,32,0,0
1051,8,1,3,3,140,65,0,0
1052,8,1,3,3,141,66,0,0
1053,8,1,1,1,23,10,0,0
1054,8,1,3,3,144,40,0,0
1055,8,1,3,3,149,42,0,0
1056,8,1,3,3,150,44,0,0
1057,8,1,3,3,146,48,0,0
1058,8,1,3,3,147,49,0,0
1059,8,1,3,3,148,60,0,0
Entity
DiagramId,ModelId,EntityId,Entity_ID,Model_ID,EntityNameId,TableNameId,DefinitionId,NoteId,OwnerId,EntityTypeId,Flags,DataWhseSettings,NSTFlag,CompareFlags,PhysicalCompareFlags,DDL_PDId,Global_User_ID,Row_Time_Stamp
1,1,2,2,1,9,9,0,0,0,0,0,130,0,0,0,0,139,0
1,1,3,4,1,32,32,0,0,0,0,0,130,0,0,0,0,297,0
1,1,4,6,1,41,41,0,0,0,0,0,130,0,0,0,0,453,0
1,1,5,8,1,52,52,0,0,0,0,0,130,0,0,0,0,606,0
1,1,6,10,1,61,61,0,0,0,0,0,8,0,0,0,0,758,0
1,1,7,12,1,68,68,0,0,0,0,0,194,0,0,0,0,946,0
1,3,2,19,8,9,9,0,0,0,0,0,130,0,0,0,0,1358,0
1,3,3,20,8,32,32,0,0,0,0,0,130,0,0,0,0,1371,0
1,3,4,21,8,41,41,0,0,0,0,0,130,0,0,0,0,1385,0
1,3,5,22,8,52,52,0,0,0,0,0,130,0,0,0,0,1397,0
1,3,6,23,8,61,61,0,0,0,0,0,8,0,0,0,0,1409,0
1,3,7,24,8,68,68,0,0,0,0,0,194,0,0,0,0,1429,0
TableStorage
DiagramId,ModelId,EntityId,TableStorage_ID,Entity_ID,Location,FillfactorPercent,MaximumRowsPerPage,PercentFree,PercentUsed,MinimumExtents,MaximumExtents,InitialExtentSize,NextExtentSize,ExtentGrowthFactor,MinimumTransactions,MaximumTransactions,LockModeSetting,RowCount,DataGrowth,GrowthRate,GrowthType,GrowthPeriod,MaximumSize,Global_User_ID,Row_Time_Stamp
1,1,2,2,2,"",-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,"",0,0,0,"","",0,140,0
1,1,3,4,4,"",-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,"",0,0,0,"","",0,296,0
1,1,4,6,6,"",-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,"",0,0,0,"","",0,452,0
1,1,5,8,8,"",-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,"",0,0,0,"","",0,605,0
1,1,6,10,10,"",-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,"",0,0,0,"","",0,757,0
1,1,7,12,12,"",-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,"",0,0,0,"","",0,945,0
1,3,2,19,19,"",-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,"",0,0,0,"","",0,1359,0
1,3,3,20,20,"",-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,"",0,0,0,"","",0,1372,0
1,3,4,21,21,"",-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,"",0,0,0,"","",0,1386,0
1,3,5,22,22,"",-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,"",0,0,0,"","",0,1398,0
1,3,6,23,23,"",-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,"",0,0,0,"","",0,1410,0
1,3,7,24,24,"",-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,"",0,0,0,"","",0,1430,0
Attribute
DiagramId,ModelId,EntityId,AttributeId,Attribute_ID,Entity_ID,UserDatatypeId,RuleId,DomainId,DefaultId,AttributeNameId,ColumnNameId,DefinitionId,NoteId,RoleNameId,LogicalRoleNameId,DatatypeId,Nullable,Length,Scale,IdentityColumn,IdentitySeed,IdentityIncrement,SequenceNo,CheckConstraintId,DefaultTextId,ColumnNameSet,RoleNameSet,LogicalRoleNameSet,GlobalId,UserDatatype,OverrideDataBits,DefaultNameId,AverageWidth,PercentNull,Flags,UnifiedToId,NSTFlag,CompareFlags,PhysicalCompareFlags,IdentityInd_PD,IdentityIncrement_PD,IdentitySeed_PD,CheckConstraint_PDId,Datatype_PDId,CompositeDatatype_PDId,Length_PD,Scale_PD,ColumnName_PDId,Global_User_ID,Row_Time_Stamp
1,1,2,1,1,2,0,0,0,0,12,83,0,0,0,0,11,0,-2,-1,N,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,23,0,0,83,144,0
1,1,2,2,2,2,0,0,0,0,14,14,0,0,0,0,13,1,255,-1,N,1,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,25,255,0,14,145,0
1,1,2,3,3,2,0,0,0,0,15,15,0,0,0,0,11,1,-2,-1,N,1,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,26,0,0,15,146,0
1,3,7,1,151,24,0,0,0,0,69,136,0,0,0,0,11,0,-2,-1,N,1,1,1,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,107,0,0,136,1431,0
1,1,2,4,4,2,0,0,0,0,17,17,0,0,0,0,16,1,100,0,N,1,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,28,100,0,17,148,0
1,1,2,5,5,2,0,0,0,0,18,18,0,0,0,0,16,1,100,0,N,1,1,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,28,100,0,18,149,0
1,1,2,6,63,2,0,0,0,0,75,75,0,0,0,0,43,1,-2,-1,N,1,1,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,48,0,0,75,964,0
1,1,2,7,69,2,0,0,0,0,76,76,0,0,0,0,13,1,100,-1,N,1,1,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,38,100,0,76,970,0
1,3,7,8,157,24,0,0,0,0,125,125,0,0,0,0,11,0,-2,-1,N,1,1,2,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,107,0,0,125,1464,0
1,3,7,9,158,24,0,0,0,0,126,126,0,0,0,0,13,1,100,-1,N,1,1,3,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,108,115,100,0,126,1465,0
1,3,7,10,159,24,0,0,0,0,127,127,0,0,0,0,11,0,-2,-1,N,1,1,4,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,107,0,0,127,1466,0
1,3,7,11,160,24,0,0,0,0,128,128,0,0,0,0,13,0,100,-1,N,1,1,5,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,108,135,100,0,128,1467,0
1,3,7,12,161,24,0,0,0,0,129,129,0,0,0,0,11,1,-2,-1,N,1,1,6,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,110,0,0,129,1468,0
1,3,7,13,162,24,0,0,0,0,130,130,0,0,0,0,13,1,100,-1,N,1,1,7,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,108,115,100,0,130,1469,0
1,1,6,1,40,10,0,0,0,0,62,102,0,0,0,0,11,0,-2,-1,N,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,23,0,0,102,761,0
1,3,7,14,163,24,0,0,0,0,131,131,0,0,0,0,13,1,10,-1,N,1,1,8,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,108,117,10,0,131,1470,0
1,3,7,16,165,24,0,0,0,0,133,133,0,0,0,0,13,1,100,-1,N,1,1,9,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,108,115,100,0,133,1472,0
1,3,7,17,166,24,0,0,0,0,134,134,0,0,0,0,43,1,-2,-1,N,1,1,11,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,113,114,0,0,134,1473,0
1,1,6,5,39,10,0,0,0,0,63,63,0,0,0,0,11,1,-2,-1,N,1,1,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,26,0,0,63,760,0
1,3,7,18,167,24,0,0,0,0,75,75,0,0,0,0,43,1,-2,-1,N,1,1,10,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,113,114,0,0,75,1474,0
1,1,6,6,42,10,0,0,0,0,12,83,0,0,12,12,11,0,-2,-1,N,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,23,0,0,83,769,0
1,1,6,7,44,10,0,0,0,0,33,100,0,0,33,33,11,0,-2,-1,N,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,23,0,0,100,779,0
1,3,4,1,130,21,0,0,0,0,77,77,0,0,0,0,11,0,-2,-1,N,1,1,1,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,107,0,0,77,1387,0
1,1,6,8,48,10,0,0,0,0,77,101,0,0,77,77,11,0,-2,-1,N,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,23,0,0,101,795,0
1,1,6,9,49,10,0,0,0,0,51,103,0,0,51,51,11,0,-2,-1,N,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,23,0,0,103,800,0
1,1,6,10,60,10,0,0,0,0,69,104,0,0,69,69,11,0,-2,-1,N,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,23,0,0,104,959,0
1,1,6,11,64,10,0,0,0,0,75,75,0,0,0,0,43,1,-2,-1,N,1,1,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,48,0,0,75,965,0
1,3,4,5,132,21,0,0,0,0,46,46,0,0,0,0,13,1,100,-1,N,1,1,3,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,108,115,100,0,46,1389,0
1,1,6,12,70,10,0,0,0,0,76,76,0,0,0,0,13,1,100,-1,N,1,1,9,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,38,100,0,76,971,0
1,3,4,10,133,21,0,0,0,0,75,75,0,0,0,0,43,1,-2,-1,N,1,1,7,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,113,114,0,0,75,1390,0
1,3,4,11,134,21,0,0,0,0,76,137,0,0,0,0,13,1,100,-1,N,1,1,8,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,108,115,100,0,137,1391,0
1,3,4,12,135,21,0,0,0,0,78,78,0,0,0,0,10,0,100,-1,N,1,1,2,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,118,119,100,0,78,1392,0
1,3,4,13,169,21,0,0,0,0,54,54,0,0,0,0,13,1,100,-1,N,1,1,4,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,108,115,100,0,54,1476,0
1,1,3,1,11,4,0,0,0,0,33,100,0,0,0,0,11,0,-2,-1,N,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,23,0,0,100,298,0
1,3,4,14,170,21,0,0,0,0,55,55,0,0,0,0,13,1,100,-1,N,1,1,5,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,108,115,100,0,55,1477,0
1,1,3,2,12,4,0,0,0,0,34,34,0,0,0,0,13,1,255,-1,N,1,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,25,255,0,34,299,0
1,3,4,15,171,21,0,0,0,0,56,56,0,0,0,0,13,1,100,-1,N,1,1,6,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,108,115,100,0,56,1478,0
1,1,3,3,13,4,0,0,0,0,35,35,0,0,0,0,13,1,100,-1,N,1,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,38,100,0,35,300,0
1,1,3,4,14,4,0,0,0,0,36,36,0,0,0,0,11,1,-2,-1,N,1,1,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,26,100,0,36,301,0
1,1,3,5,15,4,0,0,0,0,37,37,0,0,0,0,13,1,100,-1,N,1,1,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,38,100,0,37,302,0
1,1,3,6,62,4,0,0,0,0,75,75,0,0,0,0,43,1,-2,-1,N,1,1,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,48,0,0,75,963,0
1,1,3,7,68,4,0,0,0,0,76,76,0,0,0,0,13,1,100,-1,N,1,1,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,38,100,0,76,969,0
1,1,3,8,72,4,0,0,0,0,84,84,0,0,0,0,13,1,10,-1,N,1,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,116,10,0,84,981,0
1,1,7,1,54,12,0,0,0,0,69,104,0,0,0,0,11,0,-2,-1,N,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,23,0,0,104,947,0
1,1,7,2,55,12,0,0,0,0,71,71,0,0,0,0,11,0,-2,-1,N,1,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,23,0,0,71,948,0
1,1,7,3,56,12,0,0,0,0,72,72,0,0,0,0,11,1,-2,-1,N,1,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,26,100,0,72,949,0
1,1,7,5,57,12,0,0,0,0,70,70,0,0,0,0,11,1,-2,-1,N,1,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,26,0,0,70,950,0
1,1,7,6,58,12,0,0,0,0,73,73,0,0,0,0,43,1,-2,-1,N,1,1,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,48,0,0,73,955,0
1,1,7,7,59,12,0,0,0,0,74,74,0,0,0,0,11,1,-2,-1,N,1,1,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,26,0,0,74,956,0
1,3,5,1,136,22,0,0,0,0,51,51,0,0,0,0,11,0,-2,-1,N,1,1,1,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,107,0,0,51,1399,0
1,3,5,2,137,22,0,0,0,0,55,55,0,0,0,0,53,1,-2,-1,N,1,1,3,0,0,1,0,0,0,0,0,0,2048,0,0,0,0,0,0,0,0,0,0,120,121,0,0,55,1400,0
1,3,5,3,138,22,0,0,0,0,56,56,0,0,0,0,13,1,100,-1,N,1,1,4,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,108,115,100,0,56,1401,0
1,3,5,5,139,22,0,0,0,0,54,54,0,0,0,0,53,1,-2,-1,N,1,1,2,0,0,1,0,0,0,0,0,0,2048,0,0,0,0,0,0,0,0,0,0,120,121,0,0,54,1402,0
1,3,5,6,140,22,0,0,0,0,75,75,0,0,0,0,11,1,-2,-1,N,1,1,5,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,110,0,0,75,1403,0
1,3,5,7,141,22,0,0,0,0,76,137,0,0,0,0,13,1,100,-1,N,1,1,6,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,108,115,100,0,137,1404,0
1,1,4,1,21,6,0,0,0,0,77,101,0,0,0,0,11,0,-2,-1,N,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,23,0,0,101,454,0
1,1,4,3,23,6,0,0,0,0,45,45,0,0,0,0,13,1,100,-1,N,1,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,38,100,0,45,456,0
1,1,4,5,25,6,0,0,0,0,46,46,0,0,0,0,13,1,100,-1,N,1,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,38,100,0,46,458,0
1,3,2,1,115,19,0,0,0,0,12,12,0,0,0,0,11,0,-2,-1,N,1,1,1,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,107,0,0,12,1360,0
1,3,2,2,116,19,0,0,0,0,14,14,0,0,0,0,13,1,255,-1,N,1,1,3,0,0,1,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,108,109,255,0,14,1361,0
1,3,2,3,117,19,0,0,0,0,15,15,0,0,0,0,11,1,-2,-1,N,1,1,4,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,110,0,0,15,1362,0
1,1,4,10,61,6,0,0,0,0,75,75,0,0,0,0,43,1,-2,-1,N,1,1,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,48,0,0,75,962,0
1,3,2,4,118,19,0,0,0,0,17,17,0,0,0,0,16,1,9,6,N,1,1,5,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,111,123,9,6,17,1363,0
1,1,4,11,67,6,0,0,0,0,76,76,0,0,0,0,13,1,100,-1,N,1,1,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,38,100,0,76,968,0
1,3,2,5,119,19,0,0,0,0,18,18,0,0,0,0,16,1,9,6,N,1,1,6,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,111,123,9,6,18,1364,0
1,1,4,12,71,6,0,0,0,0,78,78,0,0,0,0,10,0,100,-1,N,1,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,82,100,0,78,972,0
1,3,2,6,120,19,0,0,0,0,75,75,0,0,0,0,43,1,-2,-1,N,1,1,7,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,113,114,0,0,75,1365,0
1,3,2,7,121,19,0,0,0,0,76,137,0,0,0,0,13,1,100,-1,N,1,1,8,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,108,115,100,0,137,1366,0
1,3,2,8,172,19,0,0,0,0,138,138,0,0,0,0,13,1,100,-1,N,1,1,2,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,108,115,100,0,138,1479,0
1,3,6,1,144,23,0,0,0,0,62,102,0,0,0,0,11,0,-2,-1,N,1,1,1,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,107,0,0,102,1413,0
1,3,6,5,145,23,0,0,0,0,63,63,0,0,0,0,11,1,-2,-1,N,1,1,7,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,110,0,0,63,1414,0
1,3,6,6,149,23,0,0,0,0,12,12,0,0,12,12,11,0,-2,-1,N,0,0,2,0,0,1,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,107,0,0,12,1418,0
1,3,6,7,150,23,0,0,0,0,33,33,0,0,33,33,11,0,-2,-1,N,0,0,3,0,0,1,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,107,0,0,33,1419,0
1,3,6,8,146,23,0,0,0,0,77,77,0,0,77,77,11,0,-2,-1,N,0,0,4,0,0,1,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,107,0,0,77,1415,0
1,3,6,9,147,23,0,0,0,0,51,51,0,0,51,51,11,0,-2,-1,N,0,0,5,0,0,1,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,107,0,0,51,1416,0
1,3,6,10,148,23,0,0,0,0,69,136,0,0,136,69,11,0,-2,-1,N,0,0,6,0,0,1,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,107,0,0,136,1417,0
1,3,6,11,142,23,0,0,0,0,75,75,0,0,0,0,43,1,-2,-1,N,1,1,9,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,113,114,0,0,75,1411,0
1,3,6,12,143,23,0,0,0,0,76,137,0,0,0,0,13,1,100,-1,N,1,1,10,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,108,115,100,0,137,1412,0
1,3,6,13,168,23,0,0,0,0,45,45,0,0,0,0,10,1,10,-1,N,1,1,8,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,118,139,10,0,45,1475,0
1,1,5,1,30,8,0,0,0,0,51,103,0,0,0,0,11,0,-2,-1,N,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,23,0,0,103,607,0
1,1,5,2,31,8,0,0,0,0,55,55,0,0,0,0,53,1,-2,-1,N,1,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,58,0,0,55,608,0
1,1,5,3,32,8,0,0,0,0,56,56,0,0,0,0,13,1,100,-1,N,1,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,38,100,0,56,609,0
1,1,5,5,33,8,0,0,0,0,54,54,0,0,0,0,53,1,-2,-1,N,1,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,58,100,0,54,610,0
1,1,5,6,65,8,0,0,0,0,75,75,0,0,0,0,11,1,-2,-1,N,1,1,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,26,0,0,75,966,0
1,1,5,7,66,8,0,0,0,0,76,76,0,0,0,0,13,1,100,-1,N,1,1,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,38,100,0,76,967,0
1,3,3,1,127,20,0,0,0,0,33,33,0,0,0,0,11,0,-2,-1,N,1,1,1,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,107,0,0,33,1378,0
1,3,3,2,128,20,0,0,0,0,34,34,0,0,0,0,13,1,255,-1,N,1,1,2,0,0,1,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,108,109,255,0,34,1379,0
1,3,3,3,122,20,0,0,0,0,35,35,0,0,0,0,13,1,100,-1,N,1,1,3,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,108,115,100,0,35,1373,0
1,3,3,4,123,20,0,0,0,0,36,36,0,0,0,0,11,1,-2,-1,N,1,1,4,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,106,110,0,0,36,1374,0
1,3,3,5,124,20,0,0,0,0,37,37,0,0,0,0,13,1,100,-1,N,1,1,5,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,108,115,100,0,37,1375,0
1,3,3,6,125,20,0,0,0,0,75,75,0,0,0,0,43,1,-2,-1,N,1,1,6,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,113,114,0,0,75,1376,0
1,3,3,7,126,20,0,0,0,0,76,137,0,0,0,0,13,1,100,-1,N,1,1,7,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,108,115,100,0,137,1377,0
1,3,3,8,129,20,0,0,0,0,84,84,0,0,0,0,13,1,10,-1,N,1,1,8,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,108,117,10,0,84,1380,0
PrimaryKey
DiagramId,ModelId,EntityId,AttributeId,PrimaryKey_ID,Attribute_ID,SequenceNo,Global_User_ID,Row_Time_Stamp
1,3,6,1,35,144,1,0,0
1,3,3,1,29,127,1,0,0
1,1,7,1,10,54,1,0,0
1,3,6,6,36,149,2,0,0
1,3,6,7,37,150,3,0,0
1,1,4,1,4,21,1,0,0
1,3,6,8,32,146,4,0,0
1,3,6,9,33,147,5,0,0
1,3,6,10,34,148,6,0,0
1,3,5,1,31,136,1,0,0
1,3,2,1,28,115,1,0,0
1,1,6,1,8,40,1,0,0
1,1,3,1,2,11,1,0,0
1,1,6,6,12,42,2,0,0
1,1,6,7,13,44,3,0,0
1,1,6,8,14,48,4,0,0
1,1,6,9,15,49,5,0,0
1,1,6,10,16,60,6,0,0
1,3,7,1,38,151,1,0,0
1,3,4,1,30,130,1,0,0
1,1,5,1,6,30,1,0,0
1,1,2,1,11,1,1,0,0
Indexes
DiagramId,ModelId,EntityId,IndexId,Indexes_ID,Entity_ID,IsUniqueId,IndexTypeId,KeyType,HashSize,HashSizeTypeId,IgnoreDupKeyId,DupRowId,NoSortId,SortOrderingId,IndexNameId,Flags,NSTFlag,CompareFlags,Global_User_ID,Row_Time_Stamp,ColumnStoreId
1,3,6,1,23,23,7,0,P,0,0,0,0,0,0,60,0,0,0,1420,0,0
1,3,3,1,20,20,7,0,P,0,0,0,0,0,0,31,0,0,0,1381,0,0
1,1,7,1,12,12,7,0,P,0,0,0,0,0,0,67,0,0,0,952,0,0
1,1,4,1,6,6,7,0,P,0,0,0,0,0,0,40,0,0,0,460,0,0
1,3,5,1,22,22,7,0,P,0,0,0,0,0,0,50,0,0,0,1405,0,0
1,3,2,1,19,19,7,0,P,0,0,0,0,0,0,29,0,0,0,1367,0,0
1,1,6,1,10,10,7,0,P,0,0,0,0,0,0,60,0,0,0,764,0,0
1,1,3,1,4,4,7,0,P,0,0,0,0,0,0,31,0,0,0,304,0,0
1,3,7,1,24,24,7,0,P,0,0,0,0,0,0,67,0,0,0,1437,0,0
1,3,4,1,21,21,7,0,P,0,0,0,0,0,0,40,0,0,0,1393,0,0
1,1,5,1,8,8,7,0,P,0,0,0,0,0,0,50,0,0,0,612,0,0
1,1,2,1,2,2,7,0,P,0,0,0,0,0,0,29,0,0,0,141,0,0
IndexStorage
DiagramId,ModelId,EntityId,IndexId,IndexStorage_ID,Indexes_ID,Location,FillfactorPercent,MaximumRowsPerPage,PercentFree,PercentUsed,MinimumExtents,MaximumExtents,InitialExtentSize,NextExtentSize,ExtentGrowthFactor,MinimumTransactions,MaximumTransactions,LockModeSetting,Global_User_ID,Row_Time_Stamp
1,3,6,1,23,23,"",-1,-1,-1,-1,-1,-1,-2,-2,-1,-1,-1,"",1421,0
1,3,3,1,20,20,"",-1,-1,-1,-1,-1,-1,-2,-2,-1,-1,-1,"",1382,0
1,1,7,1,12,12,"",-1,-1,-1,-1,-1,-1,-2,-2,-1,-1,-1,"",951,0
1,1,4,1,6,6,"",-1,-1,-1,-1,-1,-1,-2,-2,-1,-1,-1,"",459,0
1,3,5,1,22,22,"",-1,-1,-1,-1,-1,-1,-2,-2,-1,-1,-1,"",1406,0
1,3,2,1,19,19,"",-1,-1,-1,-1,-1,-1,-2,-2,-1,-1,-1,"",1368,0
1,1,6,1,10,10,"",-1,-1,-1,-1,-1,-1,-2,-2,-1,-1,-1,"",763,0
1,1,3,1,4,4,"",-1,-1,-1,-1,-1,-1,-2,-2,-1,-1,-1,"",303,0
1,3,7,1,24,24,"",-1,-1,-1,-1,-1,-1,-2,-2,-1,-1,-1,"",1438,0
1,3,4,1,21,21,"",-1,-1,-1,-1,-1,-1,-2,-2,-1,-1,-1,"",1394,0
1,1,5,1,8,8,"",-1,-1,-1,-1,-1,-1,-2,-2,-1,-1,-1,"",611,0
1,1,2,1,2,2,"",-1,-1,-1,-1,-1,-1,-2,-2,-1,-1,-1,"",142,0
IndexColumn
DiagramId,ModelId,EntityId,IndexId,AttributeId,IndexColumn_ID,Attribute_ID,Indexes_ID,SequenceNo,SortOrdering,ColumnName_PDId,Global_User_ID,Row_Time_Stamp
1,3,6,1,1,36,144,23,1,A,102,1422,0
1,3,6,1,6,37,149,23,2,A,12,1423,0
1,3,6,1,7,38,150,23,3,A,33,1424,0
1,3,6,1,8,39,146,23,4,A,77,1425,0
1,3,6,1,9,40,147,23,5,A,51,1426,0
1,3,6,1,10,41,148,23,6,A,136,1427,0
1,1,3,1,1,3,11,4,1,A,100,305,0
1,3,5,1,1,35,136,22,1,A,51,1407,0
1,1,7,1,1,19,54,12,1,A,104,953,0
1,1,2,1,1,1,1,2,1,A,83,147,0
1,3,4,1,1,34,130,21,1,A,77,1395,0
1,1,6,1,1,9,40,10,1,A,102,765,0
1,1,6,1,6,10,42,10,2,A,83,771,0
1,1,6,1,7,12,44,10,3,A,100,781,0
1,1,6,1,8,16,48,10,4,A,101,797,0
1,3,3,1,1,33,127,20,1,A,33,1383,0
1,1,6,1,9,17,49,10,5,A,103,802,0
1,1,6,1,10,20,60,10,6,A,104,961,0
1,1,5,1,1,7,30,8,1,A,103,613,0
1,3,7,1,1,42,151,24,1,A,136,1439,0
1,3,2,1,1,32,115,19,1,A,12,1369,0
1,1,4,1,1,5,21,6,1,A,101,461,0
CheckConstraints
DiagramId,ModelId,EntityId,CheckId,CheckConstraints_ID,Entity_ID,Attribute_ID,AttributeId,ConstraintNameId,CheckTextId,NSTFlag,Global_User_ID,Row_Time_Stamp
ForeignKey
DiagramId,ModelId,RelationshipId,ForeignKey_ID,New_Child_Entity_ID,New_Parent_Entity_ID,ParentEntityId,ChildEntityId,Parent_Index_ID,RelationshipTypeId,ParentConstraintTypeId,ParentCardinalityId,ParentCardinalityNo,ChildCardinalityId,ChildCardinalityNo,ParentOptionalityId,ChildOptionalityId,ParentInsertId,ParentUpdateId,ParentDeleteId,ChildInsertId,ChildUpdateId,ChildDeleteId,DefinitionId,InversePhraseId,VerbPhraseId,NoteId,RelationshipNameId,Flags,LogicalRelationshipNameId,NSTFlag,CompareFlags,Global_User_ID,Row_Time_Stamp
1,1,1,1,10,2,2,6,0,66,0,65,0,0,0,0,0,64,64,64,64,64,0,0,0,0,0,0,98304,0,0,0,767,0
1,1,3,3,10,4,3,6,0,66,0,65,0,0,0,0,0,64,64,64,64,64,0,0,0,0,0,0,98304,0,0,0,777,0
1,1,5,5,10,6,4,6,0,66,0,65,0,0,0,0,0,64,64,64,64,64,0,0,0,0,0,0,98304,0,0,0,793,0
1,1,6,6,10,8,5,6,0,66,0,65,0,0,0,0,0,64,64,64,64,64,0,0,0,0,0,0,98304,0,0,0,798,0
1,1,7,7,10,12,7,6,0,66,0,65,0,0,0,0,0,64,64,64,64,64,0,0,0,0,0,0,98304,0,0,0,957,0
1,3,1,13,23,19,2,6,0,66,65,0,0,87,0,86,86,0,64,64,64,64,0,0,0,0,0,0,0,0,0,0,1441,0
1,3,3,14,23,20,3,6,0,66,65,0,0,87,0,86,86,0,64,64,64,64,0,0,0,0,0,0,0,0,0,0,1444,0
1,3,5,15,23,21,4,6,0,66,65,0,0,87,0,86,86,0,64,64,64,64,0,0,0,0,0,0,0,0,0,0,1447,0
1,3,6,16,23,22,5,6,0,66,65,0,0,87,0,86,86,0,64,64,64,64,0,0,0,0,0,0,0,0,0,0,1450,0
1,3,7,17,23,24,7,6,0,66,65,0,0,87,0,86,86,0,64,64,64,64,0,0,0,0,0,0,0,0,0,0,1453,0
ForeignKeyColumn
ForeignKeyColumn_Id,DiagramId,ModelId,RelationshipId,ForeignKey_ID,SequenceNo,ParentEntityId,ParentAttributeId,ChildEntityId,ChildAttributeId,OriginalParentId,OriginalAttributeId,Global_User_ID,Row_Time_Stamp
18,1,3,6,16,5,5,1,6,9,5,1,1451,0
1,1,1,1,1,2,2,1,6,6,2,1,770,0
9,1,1,7,7,6,7,1,6,10,7,1,960,0
17,1,3,5,15,4,4,1,6,8,4,1,1448,0
8,1,1,6,6,5,5,1,6,9,5,1,801,0
16,1,3,3,14,3,3,1,6,7,3,1,1445,0
7,1,1,5,5,4,4,1,6,8,4,1,796,0
3,1,1,3,3,3,3,1,6,7,3,1,780,0
15,1,3,1,13,2,2,1,6,6,2,1,1442,0
19,1,3,7,17,6,7,1,6,10,7,1,1454,0
Supertype
DiagramId,ModelId,SupertypeId,Supertype_ID,Entity_ID,EntityId,Type,Discriminator,CompareFlags,Global_User_ID,Row_Time_Stamp
Subtype
DiagramId,ModelId,SupertypeId,SubtypeId,Subtype_ID,Supertype_ID,ForeignKey_ID,EntityId,RelationshipId,Global_User_ID,Row_Time_Stamp
DbView
DbView_ID,Model_ID,Inter_Model_View_ID,NameId,Is_User_Defined,DefinitionId,NotesId,OwnerId,NSTFlag,CompareFlags,DDL_PDId,Global_User_ID,Row_Time_Stamp
View_Field
View_Field_ID,DbView_ID,Alias,Inter_Model_View_Field_ID,Column_Expression,SequenceNo,Global_User_ID,Row_Time_Stamp,Column_Description
View_Component
View_Component_ID,DbView_ID,Component_Type,bIsCurrent,SQL,Global_User_ID,Row_Time_Stamp
View_Cte
View_Cte_ID,DbView_ID,NameId,SequenceNo,SelectId,Flags,Global_User_ID,Row_Time_Stamp
View_Cte_Column
View_Cte_Column_ID,View_Cte_ID,NameId,SequenceNo,Flags,Global_User_ID,Row_Time_Stamp
View_Table
View_Table_ID,DbView_ID,Entity_ID,Parent_View_ID,Alias,Inter_Model_View_Table_ID,Type,SequenceNo,Global_User_ID,Row_Time_Stamp
Field_Column
Field_Column_ID,View_Column_ID,View_Field_ID,Global_User_ID,Row_Time_Stamp
View_Column
View_Column_ID,View_Table_ID,Attribute_ID,Parent_View_Field_ID,Inter_Model_View_Column_ID,Global_User_ID,Row_Time_Stamp
Column_Usage
Column_Usage_ID,View_Column_ID,Usage_Type,SequenceNo,Global_User_ID,Row_Time_Stamp
EntityDisplay
DiagramId,ModelId,SubmodelId,EntityId,EntityDisplay_ID,Submodel_ID,Entity_ID,HorizontalPosition,VerticalPosition,cxEntity,cyEntity,cxEntityNode,cyEntityNode,xEntityNode,yEntityNode,DisplayBkgColor,BackgroundColor,Global_User_ID,Row_Time_Stamp
1,1,1,2,2,1,2,86,-233,-1,-1,0,0,0,0,0,0,143,0
1,1,1,3,4,1,4,411,-98,-1,-1,121,119,-17,39,0,0,306,0
1,1,1,4,6,1,6,752,-238,-1,-1,135,119,-17,39,0,0,462,0
1,1,1,5,8,1,8,101,-517,-1,-1,131,102,-17,39,0,0,614,0
1,1,1,6,10,1,10,367,-336,-1,-1,144,102,-5,39,0,0,766,0
1,1,1,7,12,1,12,741,-510,-1,-1,144,102,-5,39,0,0,954,0
1,3,1,2,19,8,19,86,-233,-1,-1,0,0,0,0,0,0,1370,0
1,3,1,3,20,8,20,360,-109,-1,-1,0,0,0,0,0,0,1384,0
1,3,1,4,21,8,21,629,-125,-1,-1,0,0,0,0,0,0,1396,0
1,3,1,5,22,8,22,85,-497,-1,-1,0,0,0,0,0,0,1408,0
1,3,1,6,23,8,23,367,-404,-1,-1,0,0,0,0,0,0,1428,0
1,3,1,7,24,8,24,724,-407,-1,-1,0,0,0,0,0,0,1440,0
AttributeDisplayOverride
AttributeDisplayOverride_ID,Attribute_ID,Submodel_ID,Flags,Red,Green,Blue,Face,Size,FontStyle,Escapement,Orientation,CharacterSet,OutputPrecision,ClipPrecision,Quality,Pitch,Family,Global_User_ID
View_Display
View_Display_ID,Submodel_ID,DbView_ID,DisplayBkgColor,View_Background_Color,Default_Horz_Position,Default_Vert_Position,cxView,cyView,cxViewNode,cyViewNode,xViewNode,yViewNode,Global_User_ID,Row_Time_Stamp
Submodel_SchemaObj_Link
Submodel_SchemaObj_Link_ID,Submodel_ID,MetaTable_ID,Table_Row_ID,cxNode,cyNode,xNode,yNode,cxNodeBackup,cyNodeBackup,xNodeBackup,yNodeBackup,Flags,Global_User_ID
RelationshipDisplay
DiagramId,ModelId,SubmodelId,RelationshipId,RelationshipDisplay_ID,ForeignKey_ID,Submodel_ID,ElbowPosition,DisplayVerbs,DisplayCardinality,PhysicalEntityId,VerbOffsetX,VerbOffsetY,InverseVerbOffsetX,InverseVerbOffsetY,DesiredRoutingStyle,ParentConnectorFlags,ParentConnectorOffsetX,ParentConnectorOffsetY,ParentConnectorPerMils,ChildConnectorFlags,ChildConnectorOffsetX,ChildConnectorOffsetY,ChildConnectorPerMils,cxName,cyName,cxLogicalName,cyLogicalName,cxVerbPhrase,cyVerbPhrase,cxInverseVerbPhrase,cyInverseVerbPhrase,NameOffsetX,NameOffsetY,LogicalNameOffsetX,LogicalNameOffsetY,NameOrientation,LogicalNameOrientation,VerbPhraseOrientation,InverseVerbPhraseOrientation,Global_User_ID,Row_Time_Stamp,CTMTOffsetX,CTMTOffsetY,cxContainmentPhrase,cyContainmentPhrase,ContainmentPhraseOrientation
1,1,1,1,1,1,1,5000,N,N,0,0,0,0,0,3,0,76,-61,0,0,-103,-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,-8,-28,0,0,0
1,1,1,3,3,3,1,5000,N,N,0,0,0,0,0,3,0,-13,-106,0,0,10,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,778,0,2,-7,0,0,0
1,1,1,5,5,5,1,5000,N,N,0,0,0,0,0,3,0,-80,-79,0,0,104,-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,794,0,-5,-13,0,0,0
1,1,1,6,6,6,1,5000,N,N,0,0,0,0,0,3,0,76,81,0,0,-103,-85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,799,0,-22,-1,0,0,0
1,1,1,7,7,7,1,5000,N,N,0,0,0,0,0,3,0,-76,54,0,0,104,-95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,958,0,16,-10,0,0,0
1,3,1,1,13,13,8,5000,N,N,0,0,0,0,0,3,0,76,-67,0,0,-103,-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0,0,0
1,3,1,3,14,14,8,5000,N,N,0,0,0,0,0,3,0,-13,-106,0,0,10,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1446,0,0,0,0,0,0
1,3,1,5,15,15,8,5000,N,N,0,0,0,0,0,3,0,-63,-106,0,0,104,-15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1449,0,0,0,0,0,0
1,3,1,6,16,16,8,5000,N,N,0,0,0,0,0,3,0,76,81,0,0,-103,-92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1452,0,0,0,0,0,0
1,3,1,7,17,17,8,5000,N,N,0,0,0,0,0,3,0,-76,81,0,0,104,-102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0,0,0
Docking_Position
Docking_Position_ID,View_Relationship_Display_ID,Child_View_Display_ID,Parent_View_Display_ID,RelationshipDisplay_ID,Parent_Entity_Display,Child_Entity_Display,Parent_Supertype_Display,Child_Supertype_Display,Supertype_Display_ID,Docking_Type,Global_User_ID,Row_Time_Stamp
Dock_Pos_Disp_Level
Dock_Pos_Disp_Level_ID,Docking_Position_ID,Display_Level,Parent_Side,Child_Side,Parent_Relative_Position,Child_Relative_Position,Global_User_ID,Row_Time_Stamp
Path_Node
Path_Node_ID,RelationshipDisplay_ID,View_Relationship_Display_ID,SupertypeDisplay_ID,SchemaObj_Edge_ID,Shape_Edge_Display_ID,Lineage_Stream_Display_ID,MetaEdgeDisplay_ID,X,Y,SequenceNo
1,1,0,0,0,0,0,0,270,-392,1
2,1,0,0,0,0,0,0,270,-465,2
3,5,0,0,0,0,0,0,654,-406,1
4,5,0,0,0,0,0,0,654,-454,2
5,7,0,0,0,0,0,0,606,-545,1
6,7,0,0,0,0,0,0,606,-535,2
7,13,0,0,0,0,0,0,270,-406,1
8,13,0,0,0,0,0,0,270,-544,2
9,14,0,0,0,0,0,0,429,-357,1
10,14,0,0,0,0,0,0,480,-357,2
11,15,0,0,0,0,0,0,654,-532,1
12,16,0,0,0,0,0,0,310,-505,1
13,16,0,0,0,0,0,0,310,-609,2
14,17,0,0,0,0,0,0,606,-458,1
15,17,0,0,0,0,0,0,606,-619,2
View_Relationship_Display
View_Relationship_Display_ID,Entity_ID,Parent_View_ID,Submodel_ID,Child_View_ID,ElbowPosition,Inter_Model_View_Rel_Disp_ID,DesiredRoutingStyle,ParentConnectorFlags,ParentConnectorOffsetX,ParentConnectorOffsetY,ParentConnectorPerMils,ChildConnectorFlags,ChildConnectorOffsetX,ChildConnectorOffsetY,ChildConnectorPerMils,cxName,cyName,NameOffsetX,NameOffsetY,NameOrientation,Global_User_ID,Row_Time_Stamp
SchemaObj_Edge
SchemaObj_Edge_ID,Parent_Entity_Disp_ID,Parent_View_Disp_ID,Parent_SchemaObj_Link_ID,Child_SchemaObj_Link_ID,Submodel_ID,DesiredRoutingStyle,ParentConnectorFlags,ParentConnectorOffsetX,ParentConnectorOffsetY,ParentConnectorPerMils,ChildConnectorFlags,ChildConnectorOffsetX,ChildConnectorOffsetY,ChildConnectorPerMils,DockingType,Global_User_ID
SupertypeDisplay
DiagramId,ModelId,SubmodelId,SupertypeId,SupertypeDisplay_ID,Supertype_ID,Submodel_ID,EntityId,HorizontalPosition,VerticalPosition,ElbowPosition,DesiredRoutingStyle,ParentConnectorFlags,ParentConnectorOffsetX,ParentConnectorOffsetY,ParentConnectorPerMils,ChildConnectorFlags,ChildConnectorOffsetX,ChildConnectorOffsetY,ChildConnectorPerMils,xSupertypeSymbolNode,ySupertypeSymbolNode,cxSupertypeSymbolNode,cySupertypeSymbolNode,Global_User_ID,Row_Time_Stamp
GraphicObject
DiagramId,ModelId,SubmodelId,ObjectId,GraphicObject_ID,Submodel_ID,GraphicsType,LeftPosition,TopPosition,RightPosition,BottomPosition,RawData,xNodeBackup,yNodeBackup,cxNodeBackup,cyNodeBackup,Global_User_ID,Row_Time_Stamp
Shape_Display
Shape_Display_ID,Submodel_ID,Shape_ID,xNode,yNode,cxNode,cyNode,xNodeBackup,yNodeBackup,cxNodeBackup,cyNodeBackup,zOrder,IsContainer,HorizontalTextJustification,VerticalTextJustification,WrapText,FitShape,Global_User_ID
Shape_Edge_Display
Shape_Edge_Display_ID,Shape_Edge_ID,Submodel_ID,LineWidth,PenStyle,CurvatureStyle,SourceArrowHeadStyle,TargetArrowHeadStyle,DesiredRoutingStyle,ParentConnectorFlags,ParentConnectorOffsetX,ParentConnectorOffsetY,ParentConnectorPerMils,ChildConnectorFlags,ChildConnectorOffsetX,ChildConnectorOffsetY,ChildConnectorPerMils,DockingType,cxName,cyName,cxVerbPhrase,cyVerbPhrase,cxInverseVerbPhrase,cyInverseVerbPhrase,NameOffsetX,NameOffsetY,VerbOffsetX,VerbOffsetY,InverseVerbOffsetX,InverseVerbOffsetY,NameOrientation,VerbPhraseOrientation,InverseVerbPhraseOrientation,Global_User_ID
Lineage_Component_Display
Lineage_Component_Display_ID,Lineage_Component_ID,Submodel_ID,xNode,yNode,cxNode,cyNode,xNodeBackup,yNodeBackup,cxNodeBackup,cyNodeBackup,Global_User_ID
Transformation_Display
Transformation_Display_ID,Transformation_ID,Submodel_ID,xNode,yNode,cxNode,cyNode,xNodeBackup,yNodeBackup,cxNodeBackup,cyNodeBackup,Global_User_ID
Lineage_Stream_Display
Lineage_Stream_Display_ID,Lineage_Stream_ID,Submodel_ID,DesiredRoutingStyle,ParentConnectorFlags,ParentConnectorOffsetX,ParentConnectorOffsetY,ParentConnectorPerMils,ChildConnectorFlags,ChildConnectorOffsetX,ChildConnectorOffsetY,ChildConnectorPerMils,DockingType,cxName,cyName,NameOffsetX,NameOffsetY,NameOrientation,cxDescription,cyDescription,DescriptionOffsetX,DescriptionOffsetY,DescriptionOrientation,Global_User_ID
Subject_Area_Display
Subject_Area_Display_ID,Subject_Area_ID,Submodel_ID,xNode,yNode,cxNode,cyNode,xNodeBackup,yNodeBackup,cxNodeBackup,cyNodeBackup,zOrder,HorizontalTextJustification,VerticalTextJustification,WrapText,FitShape,xNodeExpanded,yNodeExpanded,cxNodeExpanded,cyNodeExpanded,HorizontalTextExpanded,VerticalTextExpanded,WrapTextExpanded,FitShapeExpanded,ExpandState,Global_User_ID
BusDataObjectDisplay
BusDataObjectDisplay_ID,Submodel_ID,BusDataObject_ID,xNode,yNode,cxNode,cyNode,cxCollapsedNode,cyCollapsedNode,xNodeBackup,yNodeBackup,cxNodeBackup,cyNodeBackup,cxCollapsedNodeBackup,cyCollapsedNodeBackup,HorizontalTextJustification,VerticalTextJustification,zOrder,Flags,Global_User_ID
SmallString
String_Id,Data,Overflow,ConstantString,Row_Time_Stamp
1,Main,0,0,0
2,Diagram specific data dictionary.,0,0,0
3,Logical,0,0,0
4,Main Model,0,0,0
5,Data Movement Rules,0,0,0
7,Y,0,0,0
9,Dim_Location,0,0,0
10,CH,0,0,0
11,INT,0,0,0
12,Location_id(SK),0,0,0
13,VAR,0,0,0
14,Address,0,0,0
15,Zipcode,0,0,0
16,DC,0,0,0
17,Latitude,0,0,0
18,Longitude,0,0,0
21,NameOnly,0,0,0
22,INTEGER,0,0,0
23,INTEGER NOT NULL,0,0,0
24,VARCHAR,0,0,0
25,VARCHAR(255) NULL,0,0,0
26,INTEGER NULL,0,0,0
27,DECIMAL,0,0,0
28,"DECIMAL(100,0) NULL",0,0,0
29,PK2,0,0,0
31,PK2_1,0,0,0
32,Dim_Restaurant,0,0,0
33,Restaurant_id(SK),0,0,0
34,AKA_Name,0,0,0
35,DBA_Name,0,0,0
36,Licence,0,0,0
37,Facility_Type,0,0,0
38,VARCHAR(100) NULL,0,0,0
40,PK2_1_1,0,0,0
41,Dim_Inspection,0,0,0
42,Inspection_id(SK),0,0,0
43,D,0,0,0
44,Inspection_Date,0,0,0
45,Inspection_Result,0,0,0
46,Inspection_Type,0,0,0
47,DATE,0,0,0
48,DATE NULL,0,0,0
50,PK2_1_1_1,0,0,0
51,Violation_id(SK),0,0,0
52,Dim_Violation,0,0,0
53,LVA,0,0,0
54,Violation_Description,0,0,0
55,Violation_Comments,0,0,0
56,Violation_Code,0,0,0
57,LONG VARCHAR,0,0,0
58,LONG VARCHAR NULL,0,0,0
60,PK2_1_1_1_1,0,0,0
61,Fact_Violation_Analysis,0,0,0
62,Fact_Violation_id(SK),0,0,0
63,Total_Violation_Score,0,0,0
64,N,0,0,0
65,P,0,0,0
66,I,0,0,0
67,PK2_1_1_1_2,0,0,0
68,Dim_Date,0,0,0
69,Date_id(SK),0,0,0
70,Date,0,0,0
71,Month,0,0,0
72,Week,0,0,0
73,Year,0,0,0
74,Quarter,0,0,0
75,DI_CreateDate,0,0,0
76,DI_WorkflowFileName,0,0,0
77,Dim_Inspection_id(SK),0,0,0
78,Inspection_ID,0,0,0
79,Dimensional_Model__Project1_DD,0,0,0
80,Dimensional_Model__Project1.DM1,0,0,0
81,CHAR,0,0,0
82,CHAR(100) NOT NULL,0,0,0
83,Location_id,0,0,0
84,Risk_Category,0,0,0
86,M,0,0,0
87,O,0,0,0
88,SSUpdtTrigLib,0,0,0
89,"",1,0,0
90,SSDelTrigLib,0,0,0
91,"",1,0,0
92,SSInsTrigLib,0,0,0
93,"",1,0,0
94,SSUpdtTrigger,0,0,0
95,"",1,0,0
96,SSDelTrigger,0,0,0
97,"",1,0,0
98,SSInsTrigger,0,0,0
99,"",1,0,0
100,Restaurant_id,0,0,0
101,Dim_Inspection_id,0,0,0
102,Fact_Violation_id,0,0,0
103,Violation_id,0,0,0
104,Date_id,0,0,0
105,Microsoft SQL Server 2019,0,0,0
106,int,0,0,0
107,int NOT NULL,0,0,0
108,varchar,0,0,0
109,varchar(255) NULL,0,0,0
110,int NULL,0,0,0
111,decimal,0,0,0
112,"decimal(100,0) NULL",0,0,0
113,date,0,0,0
114,date NULL,0,0,0
115,varchar(100) NULL,0,0,0
116,VARCHAR(10) NULL,0,0,0
117,varchar(10) NULL,0,0,0
118,char,0,0,0
119,char(100) NOT NULL,0,0,0
120,text,0,0,0
121,text NULL,0,0,0
122,DALLAS,0,0,0
123,"decimal(9,6) NULL",0,0,0
125,Day_Num,0,0,0
126,Date_Str,0,0,0
127,Month_Num,0,0,0