2020-06 s dispo table cleanup: Difference between revisions
Ttenbergen (talk | contribs) |
Ttenbergen (talk | contribs) m →Query: no more collections allowed, really |
||
(12 intermediate revisions by the same user not shown) | |||
Line 6: | Line 6: | ||
{{Collapsable | {{Collapsable | ||
| always= The following query was used. It takes a good long while to run. Don't even try it without filtering for a specific unit first. | | always= The following query was used. It takes a good long while to run. Don't even try it without filtering for a specific unit first. | ||
| full= SELECT s_dispo.location_name, s_dispo.active | | full= <pre>SELECT | ||
FROM | s_dispo.location_name, s_dispo.active, Count(pa.D_ID) AS pa, Count(p.D_ID) AS p, Count(sl.D_ID) AS sl, Count(d.D_ID) AS d, sl.RecordStatus | ||
WHERE (((s_dispo.s_location)=True)) | FROM | ||
GROUP BY s_dispo.location_name, s_dispo.active | (((s_dispo | ||
LEFT JOIN | |||
L_Log AS sl | |||
ON | |||
s_dispo.dispo_ID = sl.Service_Location) | |||
LEFT JOIN | |||
L_Log AS p | |||
ON | |||
s_dispo.dispo_ID = p.Previous_Location) | |||
LEFT JOIN | |||
L_Log AS d | |||
ON | |||
s_dispo.dispo_ID = d.Dispo) | |||
LEFT JOIN | |||
L_Log AS pa | |||
ON | |||
s_dispo.dispo_ID = pa.Pre_admit_Inpatient_Institution | |||
WHERE | |||
( | |||
( | |||
( | |||
s_dispo.s_location | |||
) | |||
=True | |||
) | |||
) | |||
GROUP BY | |||
s_dispo.location_name, s_dispo.active, sl.RecordStatus | |||
;</pre> | |||
}} | }} | ||
== entries with s_location = true but no entry in allowed table == | == entries with s_location = true but no entry in allowed table == | ||
The following had entries in [[S dispo table]] with s_location = true, but no corresponding entry in the allowed table. This means they were not available to enter. | The following had entries in [[S dispo table]] with s_location = true, but no corresponding entry in the allowed table. This means they were not available to enter. | ||
*STB_B5a - 0 entries, deleted | *STB_B5a - 0 entries, deleted | ||
*STB_E5a - | *STB_E5a - 0 entries, deleted | ||
== Records that had been added but were never used == | == Records that had been added but were never used == | ||
Line 43: | Line 63: | ||
* STB_B5d | * STB_B5d | ||
* STB_E5b | * STB_E5b | ||
* STB_E6bB | |||
* STB_E6dB | |||
* STB_EMIPb | |||
* STB_IMCd | |||
== | == changes in preparation for no longer using letter ending entries for workload sharing == | ||
Set s_location to true on existing record which was present because this was already a [[Previous Location]] and [[Dispo]] entry. Added to [[S locations allowed collection table]]. | |||
* [[HSC_EMIP]] | |||
* [[HSC_H4H]] | |||
== oddballs == | |||
* | * HSC_H7 - no entries with this as [[Service/Location]] and not allowed, but has dispo entries, changed to be s_location = false | ||
== Related articles == | == Related articles == |