File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,11 @@ releases:
1515 ssd_care_leavers.sql (InvolvementHistoryCTE)
1616 ssd_cla_episodes.sql (outer apply getting MAX(cn.EVENT_DTTM) AS clae_cla_last_iro_contact_date)
1717 ssd_cla_previous_permanence.sql (using ELSE '' and removed COALESCE on MAX CASE blocks all)
18+ duplication of DECLARE vars within ssd_vw_current_time_windows to enable GO
1819
1920 impact_description : >
2021 to provide increased|robust null handling in tables flagged by LAs as diplaying common warnings in SSD build
22+ to address issue of unavaiable timeframe var within newly added ssd_vw_current_time_windows
2123 impacts_cms_deployment :
2224 - " systemc"
2325
Original file line number Diff line number Diff line change @@ -6981,7 +6981,13 @@ PRINT 'Run time duration: '
69816981-- =============================================================================
69826982
69836983/* GO - remove in Proc based deployment */
6984- -- GO
6984+ GO
6985+
6986+ -- replicated here in case above use of GO required
6987+ -- Core SSD timeframe parameter
6988+ DECLARE @ssd_timeframe_years INT = 6 ; -- ssd extract time-frame (YRS)
6989+ DECLARE @ssd_sub1_range_years INT = 1 ; -- ssd sub-window internal or additional LA use
6990+
69856991
69866992CREATE OR ALTER VIEW ssd_development .ssd_vw_current_time_windows
69876993AS
@@ -7028,7 +7034,7 @@ CROSS APPLY
70287034
70297035
70307036/* GO - remove in Proc based deployment */
7031- -- GO
7037+ GO
70327038select * from ssd_development .ssd_vw_current_time_windows ;
70337039
70347040-- META-END
You can’t perform that action at this time.
0 commit comments