- Open Microsoft SQL Server Management Studio
- Expand "Databases"
- Right click the Active Administrator database and select "New Query"
- Copy and paste the query below into the query window
- Click "Execute"
-- Shows the total event definitions sorted by Total
Select b.DefinitionName , COUNT(distinct a.AlertLogID) As Total From tblAlertLog As a
Inner Join tblEventDefinition As b
On a.EventDefinitionCode = b.EventDefinitionCode
Where b.ADVersion = '5.2' OR b.ADVersion = '6.1' OR b.ADVersion = '5.0' OR b.ADVersion = '6.2' OR b.ADVersion = '6.3'
Group By b.DefinitionName
Order By Total Desc
![]()

The information in the script(s) provided is known to work successfully; however, they have not been officially tested by Quest Software Quality Control. If any of these instructions are changed and/or incorrectly used, intentionally or unintentionally, this solution becomes unsupported by Quest Software Support and Development.
Quest Software Support and Development recommend always making a backup of the current database prior to execution of any script(s) that may modify it.
For customization of the Active Administrator, please contact our Professional Services Organization.