For work around:
Using below script to delete the old alarms : (please execute in SSMS on the configured playback database context)
declare @date as datetime
set @date = dateadd(d, -14, sysdatetime())
DELETE
FROM spotlight_playback_alarms
WHERE pb_timestamp < @date
User can adjust how far back to remove, by changing the -14 to number of days user wish to keep. For example, if user wants to keep alarms of 30 days, then this value should be "-30".
Product enhancement submitted - reference numeber JIRA1962
© 2025 Quest Software Inc. ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center