added files from swmgmt03

This commit is contained in:
Schork Thierry (Galenica - ADM)
2025-09-22 09:00:00 +02:00
parent de97031b1e
commit 63d058a7eb
67 changed files with 13300 additions and 1 deletions

11
amr not treated count.sql Normal file
View File

@@ -0,0 +1,11 @@
EXEC [ActiveSystemServer].[amr].[MonitoringReport] 7
return
SELECT
COUNT(1)
,cast(AMR_ArizonaRep_extraction_TS as date) as dt
FROM Arizona.dbo.APS_monitor_row a
where AMR_ArizonaRep_extraction_TS is not null
group by cast(AMR_ArizonaRep_extraction_TS as date)
order by dt desc