forked from HMIS/LSASampleCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1 Create Temp Reporting and Reference Tables.sql
More file actions
1691 lines (1651 loc) · 377 KB
/
1 Create Temp Reporting and Reference Tables.sql
File metadata and controls
1691 lines (1651 loc) · 377 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
/*
LSA FY2019 Sample Code
Name: 1 Create Temp Reporting and Reference Tables.sql
Date: 4/17/2020
5/21/2020 -- add column Step (nvarchar(10) not NULL) to all tables except ref_Calendar and ref_Populations.
This is set in the sample code with every INSERT and UPDATE statement to the section number in
which the step occurs. For sections with multiple INSERT and/or UPDATE statements, the section
number is followed by a statement number -- e.g., '3.6.1' and '3.6.2', etc.
5/28/2020 -- remove extraneous DQ1Adult and DQ3Adult columns from CREATE tlsa_Enrollment
6/4/2020 -- change ch_Include.chDate column name to ESSHStreetDate per specs
7/30/2020 - corrected name of dq_Enrollment (was dq_Enrollments) in the comments just below.
8/13/2020 - updates to ref_Populations
8/19/2020 - updates to ref_Populations / additions, corrections, deletions to match specs
8/20/2020 - updates to ref_Populations / additions, corrections, deletions to match specs (popIDs 113-128)
This script drops (if tables exist) and creates the following temp reporting tables:
tlsa_CohortDates - based on ReportStart and ReportEnd, all cohorts and dates used in the LSA
tlsa_HHID - 'master' table of HMIS HouseholdIDs active in continuum ES/SH/TH/RRH/PSH projects
between 10/1/2012 and ReportEnd. Used to store adjusted move-in and exit dates,
household types, and other frequently-referenced data
tlsa_Enrollment - a 'master' table of enrollments associated with the HouseholdIDs in tlsa_HHID
with enrollment ages and other frequently-referenced data
tlsa_Person - a person-level pre-cursor to LSAPerson / people active in report period
ch_Exclude - dates in TH or housed in RRH/PSH; used for LSAPerson chronic homelessness determination
ch_Include - dates in ES/SH or on the street; used for LSAPerson chronic homelessness determination
ch_Episodes - episodes of ES/SH/Street time constructed from ch_Include for chronic homelessness determination
tlsa_Household - a household-level precursor to LSAHousehold / households active in report period
sys_TimePadded - used to identify households' last inactive date for SystemPath
sys_Time - used to count dates in ES/SH, TH, RRH/PSH but not housed, housed in RRH/PSH, and ES/SH/StreetDates
tlsa_Exit - household-level precursor to LSAExit / households with system exits in exit cohort periods
dq_Enrollment - Enrollments included in LSAReport data quality reporting
This script drops (if tables exist), creates, and populates the following
reference tables used in the sample code:
ref_Calendar
-Table of dates between 10/1/2012 and 9/30/2022
ref_Populations
-Table of LSA household types/household populations/person-level populations
with columns that can be used to match population identifiers in LSAPerson,
LSAHousehold, and LSAExit with population IDs used in LSACalculated.
*/
if object_id ('tlsa_CohortDates') is not null drop table tlsa_CohortDates
create table tlsa_CohortDates (
Cohort int
, CohortStart date
, CohortEnd date
, ReportID int
, constraint pk_tlsa_CohortDates primary key clustered (Cohort)
)
;
if object_id ('tlsa_HHID') is not NULL drop table tlsa_HHID
create table tlsa_HHID (
HouseholdID nvarchar(32)
, HoHID nvarchar(32)
, EnrollmentID nvarchar(32)
, ProjectID nvarchar(32)
, ProjectType int
, TrackingMethod int
, EntryDate date
, MoveInDate date
, ExitDate date
, LastBednight date
, EntryHHType int
, ActiveHHType int
, Exit1HHType int
, Exit2HHType int
, ExitDest int
, Active bit
, ExitCohort int
, ActivePath int
, ExitPath int
, DQ1 int
, DQ3 int
, HHChronic int
, HHVet int
, HHDisability int
, HHFleeingDV int
, HHAdultAge int
, HHParent int
, AC3Plus int
, Step nvarchar(10) not NULL
, constraint pk_tlsa_HHID primary key clustered (HouseholdID)
)
if object_id ('tlsa_Enrollment') is not NULL drop table tlsa_Enrollment
create table tlsa_Enrollment (
EnrollmentID nvarchar(32)
, PersonalID nvarchar(32)
, HouseholdID nvarchar(32)
, RelationshipToHoH int
, ProjectID nvarchar(32)
, ProjectType int
, TrackingMethod int
, EntryDate date
, MoveInDate date
, ExitDate date
, EntryAge int
, ActiveAge int
, Exit1Age int
, Exit2Age int
, DisabilityStatus int
, DVStatus int
, Active bit
, CH bit
, Step nvarchar(10) not NULL
, constraint pk_tlsa_Enrollment primary key clustered (EnrollmentID)
)
if object_id ('tlsa_Person') is not NULL drop table tlsa_Person
create table tlsa_Person (
-- client-level precursor to aggregate lsa_Person (LSAPerson.csv)
PersonalID varchar(32) not NULL,
HoHAdult int,
CHStart date,
LastActive date,
Gender int,
Race int,
Ethnicity int,
VetStatus int,
DisabilityStatus int,
CHTime int,
CHTimeStatus int,
DVStatus int,
ESTAgeMin int,
ESTAgeMax int,
HHTypeEST int,
HoHEST int,
AdultEST int,
HHChronicEST int,
HHVetEST int,
HHDisabilityEST int,
HHFleeingDVEST int,
HHAdultAgeAOEST int,
HHAdultAgeACEST int,
HHParentEST int,
AC3PlusEST int,
AHAREST int,
AHARHoHEST int,
RRHAgeMin int,
RRHAgeMax int,
HHTypeRRH int,
HoHRRH int,
AdultRRH int,
HHChronicRRH int,
HHVetRRH int,
HHDisabilityRRH int,
HHFleeingDVRRH int,
HHAdultAgeAORRH int,
HHAdultAgeACRRH int,
HHParentRRH int,
AC3PlusRRH int,
AHARRRH int,
AHARHoHRRH int,
PSHAgeMin int,
PSHAgeMax int,
HHTypePSH int,
HoHPSH int,
AdultPSH int,
HHChronicPSH int,
HHVetPSH int,
HHDisabilityPSH int,
HHFleeingDVPSH int,
HHAdultAgeAOPSH int,
HHAdultAgeACPSH int,
HHParentPSH int,
AC3PlusPSH int,
AHARPSH int,
AHARHoHPSH int,
ReportID int,
Step nvarchar(10) not NULL,
constraint pk_tlsa_Person primary key clustered (PersonalID)
)
;
if object_id ('ch_Exclude') is not NULL drop table ch_Exclude
create table ch_Exclude(
PersonalID varchar(32) not NULL,
excludeDate date not NULL,
Step nvarchar(10) not NULL,
constraint pk_ch_Exclude primary key clustered (PersonalID, excludeDate)
)
;
if object_id ('ch_Include') is not NULL drop table ch_Include
create table ch_Include(
PersonalID varchar(32) not NULL,
ESSHStreetDate date not NULL,
Step nvarchar(10) not NULL,
constraint pk_ch_Include primary key clustered (PersonalID, ESSHStreetDate)
)
;
if object_id ('ch_Episodes') is not NULL drop table ch_Episodes
create table ch_Episodes(
PersonalID varchar(32),
episodeStart date,
episodeEnd date,
episodeDays int null,
Step nvarchar(10) not NULL,
constraint pk_ch_Episodes primary key clustered (PersonalID, episodeStart)
)
;
if object_id ('tlsa_Household') is not NULL drop table tlsa_Household
create table tlsa_Household(
HoHID varchar(32) not NULL,
HHType int not null,
FirstEntry date,
LastInactive date,
Stat int,
StatEnrollmentID varchar(32),
ReturnTime int,
HHChronic int,
HHVet int,
HHDisability int,
HHFleeingDV int,
HoHRace int,
HoHEthnicity int,
HHAdult int,
HHChild int,
HHNoDOB int,
HHAdultAge int,
HHParent int,
ESTStatus int,
ESTGeography int,
ESTLivingSit int,
ESTDestination int,
ESTChronic int,
ESTVet int,
ESTDisability int,
ESTFleeingDV int,
ESTAC3Plus int,
ESTAdultAge int,
ESTParent int,
RRHStatus int,
RRHMoveIn int,
RRHGeography int,
RRHLivingSit int,
RRHDestination int,
RRHPreMoveInDays int,
RRHChronic int,
RRHVet int,
RRHDisability int,
RRHFleeingDV int,
RRHAC3Plus int,
RRHAdultAge int,
RRHParent int,
PSHStatus int,
PSHMoveIn int,
PSHGeography int,
PSHLivingSit int,
PSHDestination int,
PSHHousedDays int,
PSHChronic int,
PSHVet int,
PSHDisability int,
PSHFleeingDV int,
PSHAC3Plus int,
PSHAdultAge int,
PSHParent int,
ESDays int,
THDays int,
ESTDays int,
RRHPSHPreMoveInDays int,
RRHHousedDays int,
SystemDaysNotPSHHoused int,
SystemHomelessDays int,
Other3917Days int,
TotalHomelessDays int,
SystemPath int,
ESTAHAR int,
RRHAHAR int,
PSHAHAR int,
ReportID int,
Step nvarchar(10) not NULL,
constraint pk_tlsa_Household primary key clustered (HoHID, HHType)
)
;
if object_id ('sys_TimePadded') is not null drop table sys_TimePadded
create table sys_TimePadded (
HoHID varchar(32) not null
, HHType int not null
, Cohort int not null
, StartDate date
, EndDate date
, Step nvarchar(10) not NULL
)
;
if object_id ('sys_Time') is not null drop table sys_Time
create table sys_Time (
HoHID nvarchar(32)
, HHType int
, sysDate date
, sysStatus int
, Step nvarchar(10) not NULL
, constraint pk_sys_Time primary key clustered (HoHID, HHType, sysDate)
)
;
if object_id ('dq_Enrollment') is not null drop table dq_Enrollment
create table dq_Enrollment(
EnrollmentID varchar(32) not null
, PersonalID varchar(32) not null
, HouseholdID varchar(32) not null
, RelationshipToHoH int
, ProjectType int
, EntryDate date
, MoveInDate date
, ExitDate date
, Status1 int
, Status3 int
, SSNValid int
, Step nvarchar(10) not NULL
constraint pk_dq_Enrollment primary key clustered (EnrollmentID)
)
;
if object_id ('tlsa_Exit') is not NULL drop table tlsa_Exit
create table tlsa_Exit(
HoHID nvarchar(32) not null,
HHType int not null,
QualifyingExitHHID nvarchar(32),
LastInactive date,
Cohort int not NULL,
Stat int,
ExitFrom int,
ExitTo int,
ReturnTime int,
HHVet int,
HHDisability int,
HHFleeingDV int,
HoHRace int,
HoHEthnicity int,
HHAdultAge int,
HHParent int,
AC3Plus int,
SystemPath int,
ReportID int not NULL,
Step nvarchar(10) not NULL,
constraint pk_tlsa_Exit primary key (Cohort, HoHID, HHType)
)
;
if object_id ('ref_Calendar') is not null drop table ref_Calendar
create table ref_Calendar (
theDate date not null
, yyyy smallint
, mm tinyint
, dd tinyint
, month_name varchar(10)
, day_name varchar(10)
, fy smallint
, constraint pk_ref_Calendar primary key clustered (theDate)
)
;
if object_id ('ref_Populations') is not null drop table ref_Populations
create table ref_Populations (
id int identity (1,1) not null
, PopID int not null
, PopName varchar(255) not null
, PopType int not null
, HHType int
, HHAdultAge int
, HHVet int
, HHDisability int
, HHChronic int
, HHFleeingDV int
, HHParent int
, HHChild int
, AC3Plus int
, Stat int
, PSHMoveIn int
, HoHRace int
, HoHEthnicity int
, SystemPath int
, Race int
, Ethnicity int
, Age int
, Gender int
, VetStatus int
, CHTime int
, CHTimeStatus int
, DisabilityStatus int
, Core int
, LOTH int
, ReturnSummary int
, ProjectLevelCount int
)
;
--Populate ref_Calendar
declare @start date = '2012-10-01'
declare @end date = '2022-09-30'
declare @i int = 0
declare @total_days int = DATEDIFF(d, @start, @end)
while @i <= @total_days
begin
insert into ref_Calendar (theDate)
select cast(dateadd(d, @i, @start) as date)
set @i = @i + 1
end
update ref_Calendar
set month_name = datename(month, theDate),
day_name = datename(weekday, theDate),
yyyy = datepart(yyyy, theDate),
mm = datepart(mm, theDate),
dd = datepart(dd, theDate),
fy = case when datepart(mm, theDate) between 10 and 12 then datepart(yyyy, theDate) + 1
else datepart(yyyy, theDate) end
SET IDENTITY_INSERT [dbo].[ref_Populations] ON
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (1, 0, N'All', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (2, 0, N'All - ES/SH SystemPath', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (3, 0, N'All - TH SystemPath', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (4, 0, N'All - ES/SH + TH SystemPath', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (5, 0, N'All - RRH SystemPath', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (6, 0, N'All - ES/SH + RRH SystemPath', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (7, 0, N'All - TH + RRH SystemPath', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (8, 0, N'All - ES/SH + TH + RRH SystemPath', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (9, 0, N'All - PSH SystemPath', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (10, 0, N'All - ES/SH + PSH SystemPath', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (11, 0, N'All - ES/SH + RRH + PSH SystemPath', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (12, 0, N'All - RRH + PSH SystemPath', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (13, 0, N'All - All other SystemPath', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 12, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (14, 0, N'All', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (15, 0, N'All - ES/SH SystemPath', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (16, 0, N'All - TH SystemPath', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (17, 0, N'All - ES/SH + TH SystemPath', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (18, 0, N'All - RRH SystemPath', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (19, 0, N'All - ES/SH + RRH SystemPath', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (20, 0, N'All - TH + RRH SystemPath', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (21, 0, N'All - ES/SH + TH + RRH SystemPath', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (22, 0, N'All - PSH SystemPath', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (23, 0, N'All - ES/SH + PSH SystemPath', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (24, 0, N'All - ES/SH + RRH + PSH SystemPath', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (25, 0, N'All - RRH + PSH SystemPath', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (26, 0, N'All - All other SystemPath', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 12, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (27, 0, N'All', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (28, 0, N'All - ES/SH SystemPath', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (29, 0, N'All - TH SystemPath', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (30, 0, N'All - ES/SH + TH SystemPath', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (31, 0, N'All - RRH SystemPath', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (32, 0, N'All - ES/SH + RRH SystemPath', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (33, 0, N'All - TH + RRH SystemPath', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (34, 0, N'All - ES/SH + TH + RRH SystemPath', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (35, 0, N'All - PSH SystemPath', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (36, 0, N'All - ES/SH + PSH SystemPath', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (37, 0, N'All - ES/SH + RRH + PSH SystemPath', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (38, 0, N'All - RRH + PSH SystemPath', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (39, 0, N'All - All other SystemPath', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 12, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (40, 0, N'All', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (41, 0, N'All - ES/SH SystemPath', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (42, 0, N'All - TH SystemPath', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (43, 0, N'All - ES/SH + TH SystemPath', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (44, 0, N'All - RRH SystemPath', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (45, 0, N'All - ES/SH + RRH SystemPath', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (46, 0, N'All - TH + RRH SystemPath', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (47, 0, N'All - ES/SH + TH + RRH SystemPath', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (48, 0, N'All - PSH SystemPath', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (49, 0, N'All - ES/SH + PSH SystemPath', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (50, 0, N'All - ES/SH + RRH + PSH SystemPath', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (51, 0, N'All - RRH + PSH SystemPath', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (52, 0, N'All - All other SystemPath', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 12, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (53, 0, N'All', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (54, 0, N'All - ES/SH SystemPath', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (55, 0, N'All - TH SystemPath', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (56, 0, N'All - ES/SH + TH SystemPath', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (57, 0, N'All - RRH SystemPath', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (58, 0, N'All - ES/SH + RRH SystemPath', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (59, 0, N'All - TH + RRH SystemPath', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (60, 0, N'All - ES/SH + TH + RRH SystemPath', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (61, 0, N'All - PSH SystemPath', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (62, 0, N'All - ES/SH + PSH SystemPath', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (63, 0, N'All - ES/SH + RRH + PSH SystemPath', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (64, 0, N'All - RRH + PSH SystemPath', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (65, 0, N'All - All other SystemPath', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 12, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (66, 1, N'Youth Household 18-21', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (67, 1, N'Youth Household 18-21 - ES/SH SystemPath', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (68, 1, N'Youth Household 18-21 - TH SystemPath', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (69, 1, N'Youth Household 18-21 - ES/SH + TH SystemPath', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (70, 1, N'Youth Household 18-21 - RRH SystemPath', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (71, 1, N'Youth Household 18-21 - ES/SH + RRH SystemPath', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (72, 1, N'Youth Household 18-21 - TH + RRH SystemPath', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (73, 1, N'Youth Household 18-21 - ES/SH + TH + RRH SystemPath', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (74, 1, N'Youth Household 18-21 - PSH SystemPath', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (75, 1, N'Youth Household 18-21 - ES/SH + PSH SystemPath', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (76, 1, N'Youth Household 18-21 - ES/SH + RRH + PSH SystemPath', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (77, 1, N'Youth Household 18-21 - RRH + PSH SystemPath', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (78, 1, N'Youth Household 18-21 - All other SystemPath', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 12, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (79, 2, N'Youth Household 22-24', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (80, 2, N'Youth Household 22-24 - ES/SH SystemPath', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (81, 2, N'Youth Household 22-24 - TH SystemPath', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (82, 2, N'Youth Household 22-24 - ES/SH + TH SystemPath', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (83, 2, N'Youth Household 22-24 - RRH SystemPath', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (84, 2, N'Youth Household 22-24 - ES/SH + RRH SystemPath', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (85, 2, N'Youth Household 22-24 - TH + RRH SystemPath', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (86, 2, N'Youth Household 22-24 - ES/SH + TH + RRH SystemPath', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (87, 2, N'Youth Household 22-24 - PSH SystemPath', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (88, 2, N'Youth Household 22-24 - ES/SH + PSH SystemPath', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (89, 2, N'Youth Household 22-24 - ES/SH + RRH + PSH SystemPath', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (90, 2, N'Youth Household 22-24 - RRH + PSH SystemPath', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (91, 2, N'Youth Household 22-24 - All other SystemPath', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 12, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (92, 3, N'Veteran Household', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (93, 3, N'Veteran Household - ES/SH SystemPath', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (94, 3, N'Veteran Household - TH SystemPath', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (95, 3, N'Veteran Household - ES/SH + TH SystemPath', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (96, 3, N'Veteran Household - RRH SystemPath', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (97, 3, N'Veteran Household - ES/SH + RRH SystemPath', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (98, 3, N'Veteran Household - TH + RRH SystemPath', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (99, 3, N'Veteran Household - ES/SH + TH + RRH SystemPath', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (100, 3, N'Veteran Household - PSH SystemPath', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (101, 3, N'Veteran Household - ES/SH + PSH SystemPath', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (102, 3, N'Veteran Household - ES/SH + RRH + PSH SystemPath', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (103, 3, N'Veteran Household - RRH + PSH SystemPath', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (104, 3, N'Veteran Household - All other SystemPath', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 12, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (106, 3, N'Veteran Household', 1, 99, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (107, 4, N'Non-Veteran Household 25+', 1, 1, 25, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (108, 4, N'Non-Veteran Household 25+', 1, 1, 55, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (109, 4, N'Non-Veteran Household 25+ - ES/SH SystemPath', 1, 1, 25, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (110, 4, N'Non-Veteran Household 25+ - ES/SH SystemPath', 1, 1, 55, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (111, 4, N'Non-Veteran Household 25+ - TH SystemPath', 1, 1, 25, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (112, 4, N'Non-Veteran Household 25+ - TH SystemPath', 1, 1, 55, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (113, 4, N'Non-Veteran Household 25+ - ES/SH + TH SystemPath', 1, 1, 25, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (114, 4, N'Non-Veteran Household 25+ - ES/SH + TH SystemPath', 1, 1, 55, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (115, 4, N'Non-Veteran Household 25+ - RRH SystemPath', 1, 1, 25, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (116, 4, N'Non-Veteran Household 25+ - RRH SystemPath', 1, 1, 55, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (117, 4, N'Non-Veteran Household 25+ - ES/SH + RRH SystemPath', 1, 1, 25, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (118, 4, N'Non-Veteran Household 25+ - ES/SH + RRH SystemPath', 1, 1, 55, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (119, 4, N'Non-Veteran Household 25+ - TH + RRH SystemPath', 1, 1, 25, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (120, 4, N'Non-Veteran Household 25+ - TH + RRH SystemPath', 1, 1, 55, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (121, 4, N'Non-Veteran Household 25+ - ES/SH + TH + RRH SystemPath', 1, 1, 25, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (122, 4, N'Non-Veteran Household 25+ - ES/SH + TH + RRH SystemPath', 1, 1, 55, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (123, 4, N'Non-Veteran Household 25+ - PSH SystemPath', 1, 1, 25, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (124, 4, N'Non-Veteran Household 25+ - PSH SystemPath', 1, 1, 55, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (125, 4, N'Non-Veteran Household 25+ - ES/SH + PSH SystemPath', 1, 1, 25, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (126, 4, N'Non-Veteran Household 25+ - ES/SH + PSH SystemPath', 1, 1, 55, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (127, 4, N'Non-Veteran Household 25+ - ES/SH + RRH + PSH SystemPath', 1, 1, 25, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (128, 4, N'Non-Veteran Household 25+ - ES/SH + RRH + PSH SystemPath', 1, 1, 55, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (129, 4, N'Non-Veteran Household 25+ - RRH + PSH SystemPath', 1, 1, 25, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (130, 4, N'Non-Veteran Household 25+ - RRH + PSH SystemPath', 1, 1, 55, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (131, 4, N'Non-Veteran Household 25+ - All other SystemPath', 1, 1, 25, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 12, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (132, 4, N'Non-Veteran Household 25+ - All other SystemPath', 1, 1, 55, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 12, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 0)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (133, 5, N'Household with Disabled Adult/HoH', 1, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (134, 5, N'Household with Disabled Adult/HoH', 1, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (135, 5, N'Household with Disabled Adult/HoH', 1, 2, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (136, 5, N'Household with Disabled Adult/HoH', 1, 3, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (137, 5, N'Household with Disabled Adult/HoH', 1, 99, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (138, 6, N'Household with Chronically Homeless Adult/HoH', 1, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (139, 6, N'Household with Chronically Homeless Adult/HoH', 1, 1, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (140, 6, N'Household with Chronically Homeless Adult/HoH', 1, 2, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (141, 6, N'Household with Chronically Homeless Adult/HoH', 1, 3, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (142, 6, N'Household with Chronically Homeless Adult/HoH', 1, 99, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (143, 7, N'Household Fleeing Domestic Violence', 1, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (144, 7, N'Household Fleeing Domestic Violence', 1, 1, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (145, 7, N'Household Fleeing Domestic Violence', 1, 2, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (146, 7, N'Household Fleeing Domestic Violence', 1, 3, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (147, 7, N'Household Fleeing Domestic Violence', 1, 99, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (148, 8, N'Senior Household 55+', 1, 1, 55, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (149, 9, N'Parenting Youth Household 18-24', 1, 2, 18, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (150, 9, N'Parenting Youth Household 18-24', 1, 2, 24, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (151, 10, N'Parenting Child Household', 1, 3, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (152, 11, N'Household with 3+ Children', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, 3, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (153, 12, N'First Time Homeless Household', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (154, 12, N'First Time Homeless Household', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (155, 12, N'First Time Homeless Household', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (156, 12, N'First Time Homeless Household', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (157, 12, N'First Time Homeless Household', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (158, 13, N'Household Returning After Exit to PH', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (159, 13, N'Household Returning After Exit to PH', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (160, 13, N'Household Returning After Exit to PH', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (161, 13, N'Household Returning After Exit to PH', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (162, 13, N'Household Returning After Exit to PH', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (163, 14, N'Household with PSH Move-In During Report Period', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (164, 14, N'Household with PSH Move-In During Report Period', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (165, 14, N'Household with PSH Move-In During Report Period', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (166, 14, N'Household with PSH Move-In During Report Period', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (167, 14, N'Household with PSH Move-In During Report Period', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (168, 15, N'White, non-Hispanic/Latino HoH', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (169, 15, N'White, non-Hispanic/Latino HoH', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (170, 15, N'White, non-Hispanic/Latino HoH', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (171, 15, N'White, non-Hispanic/Latino HoH', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (172, 15, N'White, non-Hispanic/Latino HoH', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (173, 16, N'White, Hispanic/Latino HoH', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (174, 16, N'White, Hispanic/Latino HoH', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (175, 16, N'White, Hispanic/Latino HoH', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (176, 16, N'White, Hispanic/Latino HoH', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (177, 16, N'White, Hispanic/Latino HoH', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (178, 17, N'Black or African American HoH', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (179, 17, N'Black or African American HoH', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (180, 17, N'Black or African American HoH', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (181, 17, N'Black or African American HoH', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (182, 17, N'Black or African American HoH', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (183, 18, N'Asian HoH', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (184, 18, N'Asian HoH', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (185, 18, N'Asian HoH', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (186, 18, N'Asian HoH', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (187, 18, N'Asian HoH', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (188, 19, N'American Indian/Alaska Native HoH', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (189, 19, N'American Indian/Alaska Native HoH', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (190, 19, N'American Indian/Alaska Native HoH', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (191, 19, N'American Indian/Alaska Native HoH', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (192, 19, N'American Indian/Alaska Native HoH', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (193, 20, N'Native Hawaiian/Other Pacific Islander HoH', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (194, 20, N'Native Hawaiian/Other Pacific Islander HoH', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (195, 20, N'Native Hawaiian/Other Pacific Islander HoH', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (196, 20, N'Native Hawaiian/Other Pacific Islander HoH', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (197, 20, N'Native Hawaiian/Other Pacific Islander HoH', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (198, 21, N'Multi-Racial HoH', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (199, 21, N'Multi-Racial HoH', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (200, 21, N'Multi-Racial HoH', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (201, 21, N'Multi-Racial HoH', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (202, 21, N'Multi-Racial HoH', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (203, 22, N'Non-Hispanic/Latino HoH', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (204, 22, N'Non-Hispanic/Latino HoH', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (205, 22, N'Non-Hispanic/Latino HoH', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (206, 22, N'Non-Hispanic/Latino HoH', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (207, 22, N'Non-Hispanic/Latino HoH', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (208, 23, N'Hispanic/Latino HoH', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (209, 23, N'Hispanic/Latino HoH', 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (210, 23, N'Hispanic/Latino HoH', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (211, 23, N'Hispanic/Latino HoH', 1, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (212, 23, N'Hispanic/Latino HoH', 1, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (213, 39, N'Youth Household 18-21 - Disabled Adult/HoH', 1, 1, 18, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (214, 40, N'Youth Household 18-21 - Fleeing Domestic Violence', 1, 1, 18, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (215, 41, N'Youth Household 18-21 - First Time Homeless', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (216, 42, N'Youth Household 18-21 - Returning after Exit to PH', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (217, 43, N'Youth Household 18-21 - PSH Move-In During Report Period', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (218, 44, N'Youth Household 18-21 - White, non-Hispanic/Latino HoH', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (219, 45, N'Youth Household 18-21 - White, Hispanic/Latino HoH', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (220, 46, N'Youth Household 18-21 - Black or African American HoH', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (221, 47, N'Youth Household 18-21 - Asian HoH', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (222, 48, N'Youth Household 18-21 - American Indian/Alaska Native HoH', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (223, 49, N'Youth Household 18-21 - Native Hawaiian/Other Pacific Islander HoH', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (224, 50, N'Youth Household 18-21 - Multi-Racial HoH', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (225, 51, N'Youth Household 18-21 - Non-Hispanic/Latino HoH', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (226, 52, N'Youth Household 18-21 - Hispanic/Latino HoH', 1, 1, 18, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (227, 53, N'Youth Household 22-24 - Disabled Adult/HoH', 1, 1, 24, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (228, 54, N'Youth Household 22-24 - Fleeing Domestic Violence', 1, 1, 24, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (229, 55, N'Youth Household 22-24 - First Time Homeless', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (230, 56, N'Youth Household 22-24 - Returning after Exit to PH', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (231, 57, N'Youth Household 22-24 - PSH Move-In During Report Period', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (232, 58, N'Youth Household 22-24 - White, non-Hispanic/Latino HoH', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (233, 59, N'Youth Household 22-24 - White, Hispanic/Latino HoH', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (234, 60, N'Youth Household 22-24 - Black or African American HoH', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (235, 61, N'Youth Household 22-24 - Asian HoH', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (236, 62, N'Youth Household 22-24 - American Indian/Alaska Native HoH', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (237, 63, N'Youth Household 22-24 - Native Hawaiian/Other Pacific Islander HoH', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (238, 64, N'Youth Household 22-24 - Multi-Racial HoH', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (239, 65, N'Youth Household 22-24 - Non-Hispanic/Latino HoH', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (240, 66, N'Youth Household 22-24 - Hispanic/Latino HoH', 1, 1, 24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (255, 81, N'Veteran Household - Disabled Adult/HoH', 1, 1, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (256, 82, N'Veteran Household - Fleeing Domestic Violence', 1, 1, NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (257, 83, N'Veteran Household - First Time Homeless', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (258, 84, N'Veteran Household - Returning after Exit to PH', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (259, 85, N'Veteran Household - PSH Move-In During Report Period', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (260, 86, N'Veteran Household - White, non-Hispanic/Latino HoH', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (261, 87, N'Veteran Household - White, Hispanic/Latino HoH', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (262, 88, N'Veteran Household - Black or African American HoH', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (263, 89, N'Veteran Household - Asian HoH', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (264, 90, N'Veteran Household - American Indian/Alaska Native HoH', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (265, 91, N'Veteran Household - Native Hawaiian/Other Pacific Islander HoH', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (266, 92, N'Veteran Household - Multi-Racial HoH', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (267, 93, N'Veteran Household - Non-Hispanic/Latino HoH', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (268, 94, N'Veteran Household - Hispanic/Latino HoH', 1, 1, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (269, 95, N'Veteran Household 55+', 1, 1, 55, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (270, 96, N'Non-Veteran Household 55+', 1, 1, 55, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (271, 3, N'Veteran', 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (272, 3, N'Veteran', 3, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (273, 3, N'Veteran', 3, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (274, 3, N'Veteran', 3, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (275, 6, N'Chronically Homeless Adult/HoH', 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 365, 1, 1, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (276, 6, N'Chronically Homeless Adult/HoH', 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 365, 2, 1, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (277, 6, N'Chronically Homeless Adult/HoH', 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 400, 2, 1, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (278, 6, N'Chronically Homeless Adult/HoH', 3, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 365, 1, 1, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (279, 6, N'Chronically Homeless Adult/HoH', 3, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 365, 2, 1, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (280, 6, N'Chronically Homeless Adult/HoH', 3, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 400, 2, 1, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (281, 6, N'Chronically Homeless Adult/HoH', 3, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 365, 1, 1, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (282, 6, N'Chronically Homeless Adult/HoH', 3, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 365, 2, 1, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (283, 6, N'Chronically Homeless Adult/HoH', 3, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 400, 2, 1, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (284, 6, N'Chronically Homeless Adult/HoH', 3, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 365, 1, 1, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (285, 6, N'Chronically Homeless Adult/HoH', 3, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 365, 2, 1, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (286, 6, N'Chronically Homeless Adult/HoH', 3, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 400, 2, 1, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (287, 6, N'Chronically Homeless Adult/HoH', 3, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 365, 1, 1, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (288, 6, N'Chronically Homeless Adult/HoH', 3, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 365, 2, 1, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (289, 6, N'Chronically Homeless Adult/HoH', 3, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 400, 2, 1, NULL, NULL, NULL, 1)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (290, 15, N'White, non-Hispanic/Latino', 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (291, 15, N'White, non-Hispanic/Latino', 3, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (292, 15, N'White, non-Hispanic/Latino', 3, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (293, 15, N'White, non-Hispanic/Latino', 3, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (294, 15, N'White, non-Hispanic/Latino', 3, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (295, 16, N'White, Hispanic/Latino', 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
GO
INSERT [dbo].[ref_Populations] ([id], [PopID], [PopName], [PopType], [HHType], [HHAdultAge], [HHVet], [HHDisability], [HHChronic], [HHFleeingDV], [HHParent], [HHChild], [AC3Plus], [Stat], [PSHMoveIn], [HoHRace], [HoHEthnicity], [SystemPath], [Race], [Ethnicity], [Age], [Gender], [VetStatus], [CHTime], [CHTimeStatus], [DisabilityStatus], [Core], [LOTH], [ReturnSummary], [ProjectLevelCount]) VALUES (296, 16, N'White, Hispanic/Latino', 3, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)