Change Alert Center Threshold Description

Change Alert Center Threshold Description

Threshold description couldn’t be edited from Web Interface but we have to use SQL queries. The operation is divided into 2 parts.

  1. The first: Get information about all configured Alert Center thresholds
  2. The second: Update the required threshold

Get information about all configured threshold
We will use the following query to get the information about all Alert Center thresholds.

SELECT nProActiveAlertID, sAlertName, sAlertDescription FROM ProActiveAlert

Update threshold
We should select the required threshold to update, we will use nProActiveAlertID to filter the results.

UPDATE ProActiveAlert
SET sAlertDescription = 'New_Alert_Description'
WHERE nProActiveAlertID = 10

Notes:

  1. New_Alert_Description should be replaced with the required description of the threshold.
  2. ’10’ is the ID of the value we are going to change.