Files
sql-scripts/amr not treated count.sql
Schork Thierry (Galenica - ADM) 63d058a7eb added files from swmgmt03
2025-09-22 09:00:00 +02:00

12 lines
292 B
SQL

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