-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostgresql_process_tracker.sql
More file actions
1218 lines (1019 loc) · 46.2 KB
/
Copy pathpostgresql_process_tracker.sql
File metadata and controls
1218 lines (1019 loc) · 46.2 KB
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
SET search_path TO process_tracker;
create schema process_tracker;
alter schema process_tracker owner to pt_admin;
create schema process_tracker;
alter schema process_tracker owner to pt_admin;
create table dataset_type_lkup
(
dataset_type_id serial not null
constraint dataset_type_lkup_pk
primary key,
dataset_type varchar(250),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table dataset_type_lkup is 'High level of dataset type categories';
alter table dataset_type_lkup owner to pt_admin;
create unique index dataset_type_lkup_dataset_type_uindex
on dataset_type_lkup (dataset_type);
create table error_type_lkup
(
error_type_id serial not null
constraint error_type_lkup_pk
primary key,
error_type_name varchar(250) not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table error_type_lkup is 'Types of errors that are being tracked.';
comment on column error_type_lkup.error_type_name is 'Unique error type name.';
alter table error_type_lkup owner to pt_admin;
create unique index error_type_lkup_udx01
on error_type_lkup (error_type_name);
create table error_tracking
(
error_tracking_id serial not null
constraint error_tracking_pk
primary key,
error_type_id integer not null,
process_tracking_id integer not null,
error_description varchar(750),
error_occurrence_date_time timestamp not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table error_tracking is 'Tracking of process errors';
comment on column error_tracking.error_type_id is 'The type of error being recorded.';
comment on column error_tracking.process_tracking_id is 'The specific process run that triggered the error.';
comment on column error_tracking.error_occurrence_date_time is 'The timestamp when the error occurred.';
alter table error_tracking owner to pt_admin;
create index error_tracking_idx01
on error_tracking (process_tracking_id, error_type_id);
create table tool_lkup
(
tool_id serial not null
constraint tool_lkup_pk
primary key,
tool_name varchar(250) not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table tool_lkup is 'List of tools that are used to run processes';
alter table tool_lkup owner to pt_admin;
create unique index tool_lkup_tool_udx01
on tool_lkup (tool_name);
create table process_status_lkup
(
process_status_id serial not null
constraint process_status_lkup_pk
primary key,
process_status_name varchar(75) not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table process_status_lkup is 'Process status states';
alter table process_status_lkup owner to pt_admin;
create unique index process_status_lkup_udx01
on process_status_lkup (process_status_name);
create table process_type_lkup
(
process_type_id serial not null
constraint process_type_lkup_pk
primary key,
process_type_name varchar(250) not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table process_type_lkup is 'Valid process types for processes';
comment on column process_type_lkup.process_type_name is 'Unique process type name.';
alter table process_type_lkup owner to pt_admin;
create unique index process_type_lkup_udx01
on process_type_lkup (process_type_name);
create table actor_lkup
(
actor_id serial not null
constraint actor_lkup_pk
primary key,
actor_name varchar(250) not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table actor_lkup is 'List of developers or applications that can run processes.';
alter table actor_lkup owner to pt_admin;
create unique index actor_lkup_udx01
on actor_lkup (actor_name);
create table extract_status_lkup
(
extract_status_id serial not null
constraint extract_status_lkup_pk
primary key,
extract_status_name varchar(75) not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table extract_status_lkup is 'List of valid extract processing statuses.';
alter table extract_status_lkup owner to pt_admin;
create unique index extract_status_lkup_extract_status_name_uindex
on extract_status_lkup (extract_status_name);
create table location_type_lkup
(
location_type_id serial not null
constraint location_type_lkup_pk
primary key,
location_type_name varchar(25) not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table location_type_lkup is 'Listing of location types';
alter table location_type_lkup owner to pt_admin;
create unique index location_type_lkup_udx01
on location_type_lkup (location_type_name);
create table location_lkup
(
location_id serial not null
constraint location_lkup_pk
primary key,
location_name varchar(750) not null,
location_path varchar(750) not null,
location_type_id integer not null
constraint location_lkup_fk01
references location_type_lkup,
location_file_count integer,
location_bucket_name varchar(750),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table location_lkup is 'Locations where files are located.';
alter table location_lkup owner to pt_admin;
create unique index location_lkup_udx01
on location_lkup (location_name);
create unique index location_lkup_udx02
on location_lkup (location_path);
create table system_lkup
(
system_id serial not null
constraint system_lkup_pk
primary key,
system_key varchar(250) not null,
system_value varchar(250) not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table system_lkup is 'ProcessTracker system information';
alter table system_lkup owner to pt_admin;
create unique index system_lkup_system_key_uindex
on system_lkup (system_key);
create table cluster_tracking_lkup
(
cluster_id serial not null
constraint cluster_tracking_pk
primary key,
cluster_name varchar(250) not null,
cluster_max_memory integer,
cluster_max_memory_unit char(2),
cluster_max_processing integer,
cluster_max_processing_unit varchar(3),
cluster_current_memory_usage integer,
cluster_current_process_usage integer,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table cluster_tracking_lkup is 'Capacity cluster tracking';
alter table cluster_tracking_lkup owner to pt_admin;
create unique index cluster_tracking_cluster_name_uindex
on cluster_tracking_lkup (cluster_name);
create table contact_lkup
(
contact_id serial not null
constraint contact_lkup_pk
primary key,
contact_name varchar(250) not null,
contact_email varchar(750),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table contact_lkup owner to pt_admin;
create unique index contact_lkup_contact_email_uindex
on contact_lkup (contact_email);
create unique index contact_lkup_contact_name_uindex
on contact_lkup (contact_name);
create table extract_compression_type_lkup
(
extract_compression_type_id serial not null
constraint extract_compression_type_lkup_pk
primary key,
extract_compression_type varchar(25) not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table extract_compression_type_lkup owner to pt_admin;
create unique index extract_compression_type_lkup_extract_compression_type_uindex
on extract_compression_type_lkup (extract_compression_type);
create table extract_filetype_lkup
(
extract_filetype_id serial not null
constraint extract_filetype_lkup_pk
primary key,
extract_filetype_code varchar(25) not null,
extract_filetype varchar(75) not null,
delimiter_char char,
quote_char char,
escape_char char,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table extract_filetype_lkup owner to pt_admin;
create unique index extract_filetype_lkup_extract_filetype_uindex
on extract_filetype_lkup (extract_filetype);
create table data_type_lkup
(
data_type_id serial not null
constraint data_type_lkup_pk
primary key,
data_type varchar(75) not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table data_type_lkup owner to pt_admin;
create unique index data_type_lkup_data_type_uindex
on data_type_lkup (data_type);
create table schedule_frequency_lkup
(
schedule_frequency_id serial not null
constraint schedule_frequency_lkup_pk
primary key,
schedule_frequency_name varchar(25) not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table schedule_frequency_lkup owner to pt_admin;
create table process
(
process_id serial not null
constraint process_pk
primary key,
process_name varchar(250) not null,
total_record_count integer default 0 not null,
process_type_id integer
constraint process_fk02
references process_type_lkup,
process_tool_id integer
constraint process_fk03
references tool_lkup,
last_failed_run_date_time timestamp default '1900-01-01 00:00:00'::timestamp without time zone not null,
schedule_frequency_id integer default 0 not null
constraint process_fk04
references schedule_frequency_lkup,
last_completed_run_date_time timestamp default '1900-01-01 00:00:00'::timestamp without time zone not null,
last_errored_run_date_time timestamp default '1900-01-01 00:00:00'::timestamp without time zone not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table process is 'Processes being tracked';
comment on column process.process_name is 'Unique name for process.';
comment on column process.total_record_count is 'Total number of records processed over all runs of process.';
comment on column process.process_type_id is 'The type of process being tracked.';
comment on column process.process_tool_id is 'The type of tool used to execute the process.';
comment on column process.last_failed_run_date_time is 'The last time the process failed to run.';
alter table process owner to pt_admin;
create unique index process_udx01
on process (process_name);
create table process_dependency
(
parent_process_id integer not null
constraint process_dependency_fk01
references process,
child_process_id integer not null
constraint process_dependency_fk02
references process,
constraint process_dependency_pk
primary key (child_process_id, parent_process_id),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table process_dependency is 'Dependency tracking between processes.';
comment on column process_dependency.parent_process_id is 'The parent process.';
comment on column process_dependency.child_process_id is 'The child process.';
alter table process_dependency owner to pt_admin;
create table process_tracking
(
process_tracking_id serial not null
constraint process_tracking_pk
primary key,
process_id integer not null
constraint process_tracking_fk01
references process,
process_status_id integer not null
constraint process_tracking_fk02
references process_status_lkup,
process_run_id integer default 0 not null,
process_run_low_date_time timestamp,
process_run_high_date_time timestamp,
process_run_start_date_time timestamp not null,
process_run_end_date_time timestamp,
process_run_record_count integer default 0,
process_run_actor_id integer
constraint process_tracking_fk03
references actor_lkup,
is_latest_run boolean default false,
process_run_name varchar(250) null,
process_run_insert_count int default 0 not null,
process_run_update_count int default 0 not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table process_tracking is 'Tracking table of process runs.';
comment on column process_tracking.process_id is 'The process that is being run.';
comment on column process_tracking.process_status_id is 'The current status of the given process run.';
comment on column process_tracking.process_run_id is 'The unique run identifier for the process. Sequential to the unique process.';
comment on column process_tracking.process_run_low_date_time is 'The lowest datetime provided by the extract dataset being processed.';
comment on column process_tracking.process_run_high_date_time is 'The highest datetime provided by the extract dataset being processed.';
comment on column process_tracking.process_run_start_date_time is 'The datetime which the process run kicked off.';
comment on column process_tracking.process_run_end_date_time is 'The datetime which the process run ended (either in failure or success).';
comment on column process_tracking.process_run_record_count is 'The number of unique records processed by the run.';
comment on column process_tracking.process_run_actor_id is 'The actor who kicked the process run off.';
comment on column process_tracking.is_latest_run is 'Flag for determining if the run record is the latest for a given process.';
alter table process_tracking owner to pt_admin;
create index process_tracking_idx01
on process_tracking (process_id, process_status_id);
create index process_tracking_idx02
on process_tracking (process_run_start_date_time, process_run_end_date_time);
create index process_tracking_idx03
on process_tracking (process_run_low_date_time, process_run_high_date_time);
create unique index process_tracking_udx01
on process_tracking (process_run_name);
create table cluster_process
(
cluster_id integer not null
constraint cluster_process_fk01
references cluster_tracking_lkup,
process_id integer not null
constraint cluster_process_fk02
references process,
constraint cluster_process_pk
primary key (cluster_id, process_id),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table cluster_process is 'Relationship tracking between processes and performance clusters.';
alter table cluster_process owner to pt_admin;
create table process_dataset_type
(
process_id integer not null
constraint process_dataset_type_fk01
references process,
dataset_type_id integer not null
constraint process_dataset_type_fk02
references dataset_type_lkup,
constraint process_dataset_type_pk
primary key (process_id, dataset_type_id),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table process_dataset_type is 'Relationship between process and dataset type';
alter table process_dataset_type owner to pt_admin;
create table process_contact
(
process_id integer not null
constraint process_contact_fk01
references process,
contact_id integer not null
constraint process_contact_fk02
references contact_lkup,
constraint process_contact_pk
primary key (process_id, contact_id),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table process_contact owner to pt_admin;
create unique index schedule_frequency_lkup_schedule_frequency_name_uindex
on schedule_frequency_lkup (schedule_frequency_name);
create table filter_type_lkup
(
filter_type_id serial not null
constraint filter_type_lkup_pk
primary key,
filter_type_code varchar(3) not null,
filter_type_name varchar(75) not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table filter_type_lkup owner to pt_admin;
create unique index filter_type_lkup_filter_type_code_uindex
on filter_type_lkup (filter_type_code);
create unique index filter_type_lkup_filter_type_name_uindex
on filter_type_lkup (filter_type_name);
create table source_type_lkup
(
source_type_id serial not null
constraint source_type_lkup_pk
primary key,
source_type_name varchar(75) not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table source_type_lkup owner to pt_admin;
create unique index source_type_lkup_source_type_name_uindex
on source_type_lkup (source_type_name);
create table character_set_lkup
(
character_set_id serial not null
constraint character_set_lkup_pk
primary key,
character_set_name varchar(75) not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table character_set_lkup owner to pt_admin;
create table source_lkup
(
source_id serial not null
constraint source_lkup_pk
primary key,
source_name varchar(250) not null,
source_type_id integer not null default 1
constraint source_lkup_fk01
references source_type_lkup,
character_set_id integer
constraint source_lkup_fk02
references character_set_lkup,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table source_lkup is 'Source system where data originates.';
alter table source_lkup owner to pt_admin;
create unique index source_lkup_udx01
on source_lkup (source_name);
create table process_source
(
source_id integer not null
constraint process_source_fk01
references source_lkup,
process_id integer not null
constraint process_source_fk02
references process,
constraint process_source_pk
primary key (source_id, process_id),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table process_source is 'List of sources for given processes';
alter table process_source owner to pt_admin;
create table process_target
(
target_source_id integer not null
constraint process_target_fk01
references source_lkup,
process_id integer not null
constraint process_target_fk02
references process,
constraint process_target_pk
primary key (target_source_id, process_id),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table process_target is 'List of targets for given processes';
alter table process_target owner to pt_admin;
create table source_object_lkup
(
source_object_id serial not null
constraint source_object_lkup_pk
primary key,
source_id integer not null
constraint source_object_lkup_fk01
references source_lkup,
source_object_name varchar(250),
character_set_id integer
constraint source_object_lkup_fk02
references character_set_lkup,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table source_object_lkup is 'Reference table for source/target objects.';
alter table source_object_lkup owner to pt_admin;
create unique index source_object_lkup_udx01
on source_object_lkup (source_id, source_object_name);
create table process_target_object
(
process_id integer not null
constraint process_target_object_fk01
references process,
target_object_id integer not null
constraint process_target_object_fk02
references source_object_lkup,
constraint process_target_object_pk
primary key (process_id, target_object_id),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table process_target_object is 'Relationship between processes and target objects';
alter table process_target_object owner to pt_admin;
create table process_source_object
(
process_id integer not null
constraint process_source_object_fk01
references process,
source_object_id integer not null
constraint process_source_object_fk02
references source_object_lkup,
constraint process_source_object_pk
primary key (process_id, source_object_id),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table process_source_object is 'Relationship between processes and source objects';
alter table process_source_object owner to pt_admin;
create table source_dataset_type
(
source_id integer not null
constraint source_dataset_type_fk01
references source_lkup,
dataset_type_id integer not null
constraint source_dataset_type_fk02
references dataset_type_lkup,
constraint source_dataset_type_pk
primary key (source_id, dataset_type_id),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table source_dataset_type is 'Relationship between source and dataset type';
alter table source_dataset_type owner to pt_admin;
create table source_object_dataset_type
(
source_object_id integer not null
constraint source_object_dataset_type_fk01
references source_object_lkup,
dataset_type_id integer not null
constraint source_object_dataset_type_fk02
references dataset_type_lkup,
constraint source_object_dataset_type_pk
primary key (source_object_id, dataset_type_id),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table source_object_dataset_type is 'Relationship between source object and dataset type';
alter table source_object_dataset_type owner to pt_admin;
create table source_contact
(
source_id integer not null
constraint source_contact_fk01
references source_lkup,
contact_id integer not null
constraint source_contact_fk02
references contact_lkup,
constraint source_contact_pk
primary key (source_id, contact_id),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table source_contact owner to pt_admin;
create table source_object_attribute_lkup
(
source_object_attribute_id serial not null
constraint source_object_attribute_pk
primary key,
source_object_attribute_name varchar(250) not null,
source_object_id integer
constraint source_object_attribute_fk01
references source_object_lkup,
attribute_path varchar(750),
data_type_id integer
constraint source_object_attribute_fk02
references data_type_lkup,
data_length integer,
data_decimal integer,
is_pii boolean default false not null,
default_value_string varchar(250),
default_value_number numeric,
is_key boolean default false not null,
is_filter boolean default false not null,
is_partition boolean default false not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table source_object_attribute_lkup owner to pt_admin;
create unique index source_object_attribute_udx01
on source_object_attribute_lkup (source_object_id, source_object_attribute_name);
create table process_source_object_attribute
(
process_id integer not null
constraint process_source_object_attribute_fk01
references process,
source_object_attribute_id integer not null
constraint process_source_object_attribute_fk02
references source_object_attribute_lkup,
source_object_attribute_alias varchar(250),
source_object_attribute_expression varchar(250),
constraint process_source_object_attribute_pk
primary key (process_id, source_object_attribute_id),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table process_source_object_attribute owner to pt_admin;
create table process_target_object_attribute
(
process_id integer not null
constraint process_target_object_attribute_fk01
references process,
target_object_attribute_id integer not null
constraint process_target_object_attribute_fk02
references source_object_attribute_lkup,
target_object_attribute_alias varchar(250),
target_object_attribute_expression varchar(250),
constraint process_target_object_attribute_pk
primary key (process_id, target_object_attribute_id),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table process_target_object_attribute owner to pt_admin;
create table process_filter
(
process_filter_id serial not null
constraint process_filter_pk
primary key,
process_id integer not null
constraint process_filter_fk01
references process,
source_object_attribute_id integer not null
constraint process_filter_fk02
references source_object_attribute_lkup,
filter_type_id integer not null
constraint process_filter_fk03
references filter_type_lkup,
filter_value_string varchar(250),
filter_value_numeric numeric,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table process_filter owner to pt_admin;
create unique index process_filter_udx01
on process_filter (process_id, source_object_attribute_id, filter_type_id);
create table source_location
(
source_id integer not null
constraint source_location_fk01
references source_lkup,
location_id integer not null
constraint source_location_fk02
references location_lkup,
constraint source_location_pk
primary key (source_id, location_id),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table source_location owner to pt_admin;
create table source_object_location
(
source_object_id integer not null
constraint source_object_location_fk01
references source_object_lkup,
location_id integer not null
constraint source_object_location_fk02
references location_lkup,
constraint source_object_location_pk
primary key (source_object_id, location_id),
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table source_object_location owner to pt_admin;
create unique index character_set_lkup_character_set_name_uindex
on character_set_lkup (character_set_name);
create table filesize_type_lkup
(
filesize_type_id serial not null
constraint filesize_type_lkup_pk
primary key,
filesize_type_name varchar(75) not null,
filesize_type_code char(2) not null,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
alter table filesize_type_lkup owner to pt_admin;
create table extract_tracking
(
extract_id serial not null
constraint extract_tracking_pk
primary key,
extract_filename varchar(750) not null,
extract_location_id integer not null
constraint extract_tracking_fk01
references location_lkup,
extract_process_run_id integer
constraint extract_tracking_fk03
references process_tracking,
extract_status_id integer
constraint extract_tracking_fk02
references extract_status_lkup,
extract_registration_date_time timestamp not null,
extract_write_low_date_time timestamp,
extract_write_high_date_time timestamp,
extract_write_record_count integer,
extract_load_low_date_time timestamp,
extract_load_high_date_time timestamp,
extract_load_record_count integer,
extract_compression_type_id integer
constraint extract_tracking_fk04
references extract_compression_type_lkup,
extract_filetype_id integer
constraint extract_tracking_fk05
references extract_filetype_lkup,
extract_filesize numeric,
extract_filesize_type_id integer
constraint extract_tracking_fk06
references filesize_type_lkup,
created_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
created_by integer default 0 not null,
update_date_time timestamp with time zone default CURRENT_TIMESTAMP not null,
updated_by integer default 0 not null
);
comment on table extract_tracking is 'Tracking table for all extract/staging data files.';
comment on column extract_tracking.extract_filename is 'The unique filename for a given extract from a given source.';
comment on column extract_tracking.extract_location_id is 'The location where the given extract can be found.';
comment on column extract_tracking.extract_process_run_id is 'The process that registered or created the extract file.';
comment on column extract_tracking.extract_status_id is 'The status of the extract.';
comment on column extract_tracking.extract_registration_date_time is 'The datetime that the extract was loaded into extract tracking.';
comment on column extract_tracking.extract_write_low_date_time is 'The lowest datetime of the data set as noted when writing the data file.';
comment on column extract_tracking.extract_write_high_date_time is 'The highest datetime of the data set as noted when writing the data file.';
comment on column extract_tracking.extract_write_record_count is 'The record count of the data set as noted when writing the data file.';
comment on column extract_tracking.extract_load_low_date_time is 'The lowest datetime of the data set as noted when loading the data file. Should match the extract_write_low_date_time.';