I have many alerts that reference knowledge base articles. My organization is moving to a new ticketing system and the KB #s referenced in some of these alerts will no longer be relevant. In the past I have used the SolarWinds DB Manager to find things such as contacts who are no longer needed.
SELECT TOP 1000 * FROM [dbo].[ActionsProperties]
Where PropertyName = 'EmailTo' and PropertyValue LIKE '%email@email.com'
I would use a query such as the one above to get a list of alerts that get sent to a specific email. I'm trying to see what kind of query I could run to find alerts that have an email action which a message body that contains "KB" so I know what alerts I should update.
I found a table called [dbo].[Alerts], which has a column called TriggerMessage Template, however this table only shows 9 (what look like out-of-the-box-alerts)
Any ideas on what I might be able to try would be much appreciated.
Thanks!