Can we update multiple alerts on Control-M 6.4

Post Reply
User avatar
Solly
Nouveau
Nouveau
Posts: 2
Joined: 12 Jan 2012 12:00

Can we update multiple alerts on Control-M 6.4

Post by Solly » 17 Jan 2012 10:26

Hi All,

I would like to know if the is a way to update multiple alerts on Alerts GUI at one shot. Coz sometimes we receive around 500 job failure alerts all together if there is a any server issue. How is it possible to update the alerts for all those failures at one shot instead of manually updating it one by one. :cry:

Thanks in advance,
Solly

User avatar
bglr_admin
Nouveau
Nouveau
Posts: 7
Joined: 15 Dec 2011 12:00

Post by bglr_admin » 18 Jan 2012 11:48

Hello,

You can update mutiple alerts by a sql update query in Control-M/EM Database . you can set HANDLED=2 in ALARM table while using NODE_ID to sort your alerts from a particular agent node

Eg:- UPDATE ALARM set HANDLED=2 where NODE_ID="<<server>>"


Also, you may recycle your GAS server after the update.

User avatar
gglau
Nouveau
Nouveau
Posts: 317
Joined: 13 Jun 2007 12:00

Post by gglau » 19 Jan 2012 1:36

You can multiple-highlight and set Notice / Handle state in one click

User avatar
Solly
Nouveau
Nouveau
Posts: 2
Joined: 12 Jan 2012 12:00

Post by Solly » 20 Feb 2012 6:48

Thanks guys but what I meant was to update the notes part of the alerts that we receive. I am aware if handling the alerts but I am not sure if there is a way to update the notes part by selecting multiple alerts??

User avatar
bglr_admin
Nouveau
Nouveau
Posts: 7
Joined: 15 Dec 2011 12:00

Post by bglr_admin » 21 Feb 2012 6:17

Notes part of the alerts, I don't think its possible to update from front end.

Instead you may try below in EM DB

UPDATE ALARM set HANDLED=2 NOTES="<<Notes>>" where NODE_ID="<<server>>"

Post Reply