Is there any way to acknowledge and/or close all Autosys alarms at once rather than having to do so one by one via the Alarm Manager?
book
Article ID: 53567
calendar_today
Updated On:
Products
CA Workload Automation AE - Business Agents (AutoSys)CA Workload Automation AE - Scheduler (AutoSys)Workload Automation Agent
Issue/Introduction
Description
The AutoSys GUI requires alarms to be acknowledged or closed one by one via the Alarm Manager. Use these instructions to manually acknowledge and close multiple alarms.
Solution
Run the appropriate sql in the AutoSys DB.
Change all 'open' alarms to 'acknowledged': update alarm set state=44 where state=43;
Change all 'open' alarms to 'closed': update alarm set state=45 where state=43;
Change all 'acknowledged' alarms to 'closed': update alarm set state=45 where state=44;