-
Notifications
You must be signed in to change notification settings - Fork 0
/
dw_ddl.sql
5614 lines (5504 loc) · 145 KB
/
dw_ddl.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-----------------------------------------------------------
-- Export file for user DW@DATAWH --
-- Created by espositot on 5/26/2016, 15:34:26 15:34:26 --
-----------------------------------------------------------
set define off
spool dw_ddl.log
prompt
prompt Creating table ABSENCE_FACT_FEX1
prompt ================================
prompt
create table DW.ABSENCE_FACT_FEX1
(
loc_county_dist_id CHAR(6) not null,
date_id VARCHAR2(32),
stu_key VARCHAR2(19) not null,
loc_key VARCHAR2(55) not null,
record_type CHAR(1),
period VARCHAR2(8),
event_type VARCHAR2(20)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create bitmap index DW.BIX_ABSENCE_FACT_CDC on DW.ABSENCE_FACT_FEX1 (LOC_COUNTY_DIST_ID)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create bitmap index DW.BIX_ABSENCE_FACT_DATE_ID on DW.ABSENCE_FACT_FEX1 (DATE_ID)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create bitmap index DW.BIX_ABSENCE_FACT_EVENT on DW.ABSENCE_FACT_FEX1 (EVENT_TYPE)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create bitmap index DW.BIX_ABSENCE_FACT_LOCKEY on DW.ABSENCE_FACT_FEX1 (LOC_KEY)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create bitmap index DW.BIX_ABSENCE_FACT_PERIOD on DW.ABSENCE_FACT_FEX1 (PERIOD)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create bitmap index DW.BIX_ABSENCE_STUKEY on DW.ABSENCE_FACT_FEX1 (STU_KEY)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table COURSE_DIM_DEX1
prompt ==============================
prompt
create table DW.COURSE_DIM_DEX1
(
loc_county_dist_id VARCHAR2(10) not null,
course_key VARCHAR2(55) not null,
school_year CHAR(4) not null,
course_id VARCHAR2(15),
course_ext VARCHAR2(5),
course_desc VARCHAR2(50),
course_type VARCHAR2(50),
first_elgbl_grd VARCHAR2(18),
last_elgbl_grd VARCHAR2(18),
course_dept VARCHAR2(20),
course_subject_area VARCHAR2(40),
state_course_cd VARCHAR2(10),
state_course_desc VARCHAR2(150),
course_adopted_dt VARCHAR2(21),
course_deleted_dt VARCHAR2(21),
course_updated_dt VARCHAR2(21)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create bitmap index DW.BIX_COURSE_DIM_DEX1_CDC on DW.COURSE_DIM_DEX1 (LOC_COUNTY_DIST_ID)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create index DW.COURSE_KEY on DW.COURSE_DIM_DEX1 (COURSE_KEY)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create index DW.IX_COURSE_ID on DW.COURSE_DIM_DEX1 (COURSE_ID)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table DATE_DIM
prompt =======================
prompt
create table DW.DATE_DIM
(
date_sid NUMBER(8) not null,
schl_year_desc VARCHAR2(9) not null,
schl_year NUMBER(4) not null,
yyyymmdd VARCHAR2(8) not null,
julian_dt NUMBER(7) not null,
date_id DATE not null,
day_desc VARCHAR2(28) not null,
year_id NUMBER(4) not null,
month_nbr NUMBER(2) not null,
day_nbr NUMBER(2) not null,
dow_desc VARCHAR2(9) not null,
dow_nbr NUMBER(1) not null,
month_id NUMBER(6) not null,
year_desc VARCHAR2(6) not null,
month_desc VARCHAR2(9) not null,
month_short_desc VARCHAR2(3) not null,
day_short_desc VARCHAR2(16) not null,
dow_short_desc VARCHAR2(9) not null,
jul_fy NUMBER(1),
sep_fy NUMBER(1)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create unique index DW.DATE_DIM_DATE_SID_SCHL_YEAR on DW.DATE_DIM (DATE_SID, SCHL_YEAR)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create unique index DW.DATE_DIM_SID_SCHL_YEAR_DESC on DW.DATE_DIM (DATE_SID, SCHL_YEAR_DESC)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create unique index DW.PK_DATE_DIM on DW.DATE_DIM (DATE_SID)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table DIMENSION_EXCEPTIONS
prompt ===================================
prompt
create table DW.DIMENSION_EXCEPTIONS
(
statement_id VARCHAR2(30),
owner VARCHAR2(30) not null,
table_name VARCHAR2(30) not null,
dimension_name VARCHAR2(30) not null,
relationship VARCHAR2(11) not null,
bad_rowid ROWID not null
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table DISTRICT_CDN_FEX
prompt ===============================
prompt
create table DW.DISTRICT_CDN_FEX
(
r10cdn VARCHAR2(161 CHAR),
entry_id VARCHAR2(40 CHAR)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table DISTRICT_DN_FEX
prompt ==============================
prompt
create table DW.DISTRICT_DN_FEX
(
dn VARCHAR2(161 CHAR),
entry_id VARCHAR2(40 CHAR)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table DISTRICT_LOC_FEX
prompt ===============================
prompt
create table DW.DISTRICT_LOC_FEX
(
r10location VARCHAR2(161 CHAR),
entry_id VARCHAR2(40 CHAR)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table DISTRICT_LOC_FEX1
prompt ================================
prompt
create table DW.DISTRICT_LOC_FEX1
(
r10location VARCHAR2(161 CHAR),
entry_id_temp VARCHAR2(40 CHAR),
cur_record VARCHAR2(40 CHAR),
counter NUMBER(10)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table DISTRICT_LOC_FEX2
prompt ================================
prompt
create table DW.DISTRICT_LOC_FEX2
(
r10location VARCHAR2(161 CHAR),
entry_id VARCHAR2(40 CHAR),
entry_id_temp VARCHAR2(161 CHAR),
entry_cur_record VARCHAR2(40 CHAR)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table DISTRICT_MAIL_FEX
prompt ================================
prompt
create table DW.DISTRICT_MAIL_FEX
(
mail VARCHAR2(161 CHAR),
entry_id VARCHAR2(40 CHAR)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table DISTRICT_UID_FEX
prompt ===============================
prompt
create table DW.DISTRICT_UID_FEX
(
uid VARCHAR2(161 CHAR),
entry_id VARCHAR2(40 CHAR)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table DIS_ACT_DIM_DEX1
prompt ===============================
prompt
create table DW.DIS_ACT_DIM_DEX1
(
loc_county_dist_id CHAR(6) not null,
act_key VARCHAR2(30) not null,
act_id VARCHAR2(8),
act_type VARCHAR2(8),
act_short_desc VARCHAR2(40),
act_desc VARCHAR2(50),
is_corp_pnshmnt NUMBER,
is_alt_plcmnt NUMBER,
is_is_susp NUMBER,
is_other NUMBER,
act_cur_sy_cnt NUMBER,
act_tot_cnt NUMBER,
is_oos_susp NUMBER,
is_expulsion NUMBER,
is_crt_juv_rfrrl NUMBER,
act_severity NUMBER,
act_avg_lngth NUMBER,
act_assign_lngth NUMBER,
is_schll_chg_plcmnt NUMBER,
is_daep NUMBER(1),
is_jjaep NUMBER(1)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create bitmap index DW.BIX_DIS_ACT_DIM_DEX1_CDC on DW.DIS_ACT_DIM_DEX1 (LOC_COUNTY_DIST_ID)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create unique index DW.PK_DIS_ACT_DIM_DEX1 on DW.DIS_ACT_DIM_DEX1 (ACT_KEY)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table DIS_FACT_FEX1
prompt ============================
prompt
create table DW.DIS_FACT_FEX1
(
loc_county_dist_id CHAR(6) not null,
school_year VARCHAR2(43),
record_type CHAR(1),
stu_key VARCHAR2(20) not null,
event_id VARCHAR2(50),
cur_grd_lvl VARCHAR2(2),
nbr_of_incidents CHAR(1),
is_hate_crime CHAR(1),
is_alcohol CHAR(1),
is_drug CHAR(1),
is_weapon CHAR(1),
is_gang CHAR(1),
was_law_notified CHAR(1),
invlvmnt_type CHAR(2),
where_flag CHAR(3),
weapon_type_cd CHAR(2),
loo_key VARCHAR2(20),
inc_key VARCHAR2(30),
event_loc_key VARCHAR2(25),
event_dt VARCHAR2(32),
event_time CHAR(7),
rprtng_staff_id VARCHAR2(40),
state_grp_id VARCHAR2(55),
case_nbr VARCHAR2(61),
act_nbr_of_days VARCHAR2(83),
act_key VARCHAR2(30),
act_loc_key VARCHAR2(17),
act_dt VARCHAR2(32),
act_staff_id VARCHAR2(15),
act_begin_dt VARCHAR2(32),
act_nbr_dys_servd VARCHAR2(10),
act_reason_dif VARCHAR2(10),
incident_number VARCHAR2(10)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
comment on table DW.DIS_FACT_FEX1
is 'Discipline Fact';
comment on column DW.DIS_FACT_FEX1.stu_key
is 'KEY: Student Dimension';
create bitmap index DW.BIX_DIS_FACT_FEX1_CDC on DW.DIS_FACT_FEX1 (LOC_COUNTY_DIST_ID)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create bitmap index DW.BMI_DIS_FACT_FEX1_ACT_KEY on DW.DIS_FACT_FEX1 (ACT_KEY)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create bitmap index DW.BMI_DIS_FACT_RECORD_TYPE on DW.DIS_FACT_FEX1 (RECORD_TYPE)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table DIS_INC_DIM_DEX1
prompt ===============================
prompt
create table DW.DIS_INC_DIM_DEX1
(
loc_county_dist_id CHAR(6),
inc_key VARCHAR2(30),
inc_id VARCHAR2(9),
inc_short_desc VARCHAR2(15),
inc_type VARCHAR2(9),
weapon_used_cd NUMBER,
inc_tot_cnt NUMBER,
inc_severity NUMBER,
inc_desc VARCHAR2(50),
inc_cur_sy_cnt NUMBER,
is_bullying NUMBER,
is_hate_crime NUMBER,
is_alcohol NUMBER,
is_drug NUMBER,
is_weapon NUMBER,
is_gang NUMBER,
cta_flag NUMBER
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create bitmap index DW.BIX_DIS_INC_DIM_DEX1_CDC on DW.DIS_INC_DIM_DEX1 (LOC_COUNTY_DIST_ID)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create unique index DW.PK_DIS_INC_DIM_DEX1 on DW.DIS_INC_DIM_DEX1 (INC_KEY)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table DIS_LOO_DIM_DEX1
prompt ===============================
prompt
create table DW.DIS_LOO_DIM_DEX1
(
loc_county_dist_id CHAR(6) not null,
loo_key VARCHAR2(20),
loo_id VARCHAR2(8),
loo_short_desc VARCHAR2(40),
loo_use_cnt NUMBER,
loo_event_cnt NUMBER,
loo_inc_cnt NUMBER,
loo_act_cnt NUMBER,
create_dt NUMBER,
last_updt_dt NUMBER,
eff_start_dt NUMBER,
eff_end_dt NUMBER,
cur_indicator NUMBER,
loo_desc VARCHAR2(30),
loo_grp NUMBER
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create bitmap index DW.BIX_DIS_LOO_DIM_DEX1_CDC on DW.DIS_LOO_DIM_DEX1 (LOC_COUNTY_DIST_ID)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create unique index DW.PK_DIS_LOO_DIM_DEX1 on DW.DIS_LOO_DIM_DEX1 (LOO_KEY)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table DIS_STATE_GRP_DIM_DEX1
prompt =====================================
prompt
create table DW.DIS_STATE_GRP_DIM_DEX1
(
loc_county_dist_id CHAR(6),
state_grp_key VARCHAR2(25),
state_grp_id VARCHAR2(8),
state_grp_desc CHAR(50)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create bitmap index DW.BIX_DIS_STATE_GRP_DIM_DEX1_CDC on DW.DIS_STATE_GRP_DIM_DEX1 (LOC_COUNTY_DIST_ID)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create unique index DW.PK_DIS_STATE_GRP_DIM_DEX1 on DW.DIS_STATE_GRP_DIM_DEX1 (STATE_GRP_KEY)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table EMP_DATA_DISTRICT_FEX1
prompt =====================================
prompt
create table DW.EMP_DATA_DISTRICT_FEX1
(
uid VARCHAR2(190 CHAR) not null,
ldap_group VARCHAR2(19 CHAR) not null
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table EMP_DATA_DISTRICT_FEX2
prompt =====================================
prompt
create table DW.EMP_DATA_DISTRICT_FEX2
(
entry_id VARCHAR2(40 CHAR),
ldap_group VARCHAR2(19 CHAR) not null
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table EMP_DATA_LOCATION_FEX1
prompt =====================================
prompt
create table DW.EMP_DATA_LOCATION_FEX1
(
uid VARCHAR2(140 CHAR) not null,
ldap_group VARCHAR2(19 CHAR) not null
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table ENROLLMENT_FACT_FEX1
prompt ===================================
prompt
create table DW.ENROLLMENT_FACT_FEX1
(
loc_county_dist_id CHAR(6),
stu_key VARCHAR2(20),
loc_key VARCHAR2(55),
date_id VARCHAR2(10),
enr_cnt CHAR(1),
ada_enr_cnt NUMBER(2,1)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
create bitmap index DW.BIX_ENROLLMENT_FACT_FEX1_CDC on DW.ENROLLMENT_FACT_FEX1 (LOC_COUNTY_DIST_ID)
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table EPMS
prompt ===================
prompt
create table DW.EPMS
(
id NUMBER not null,
filename VARCHAR2(255),
epms_table VARCHAR2(255),
epms_column VARCHAR2(255),
source_table VARCHAR2(255),
source_column VARCHAR2(255),
error_checking VARCHAR2(255),
district VARCHAR2(25),
software VARCHAR2(64),
cef_business_id VARCHAR2(64),
cef_description VARCHAR2(1000)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
alter table DW.EPMS
add constraint EPMS_PK primary key (ID)
using index
tablespace DW_DEFAULT_INDEX
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
next 1M
minextents 1
maxextents unlimited
);
alter index DW.EPMS_PK nologging;
prompt
prompt Creating table EPMS_DATATYPE_DEFAULTS
prompt =====================================
prompt
create table DW.EPMS_DATATYPE_DEFAULTS
(
epms_table VARCHAR2(30),
epms_column VARCHAR2(30),
datatype VARCHAR2(30),
data_length_string VARCHAR2(4)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table ETL_DICTIONARY
prompt =============================
prompt
create table DW.ETL_DICTIONARY
(
"Table Name" VARCHAR2(45) not null,
"Column Name" VARCHAR2(45) not null,
"Common Name" VARCHAR2(65) not null,
"Column Definition" VARCHAR2(3000),
sdm_table VARCHAR2(30),
sdm_column VARCHAR2(30),
sdm_tabcol VARCHAR2(61)
)
tablespace DW_DEFAULT01
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
)
nologging;
prompt
prompt Creating table ETL_FAR_GUIDE_CODES
prompt ==================================
prompt
create table DW.ETL_FAR_GUIDE_CODES
(
code NUMBER(5),
type CHAR(20 CHAR),
description CHAR(108 CHAR)
)