Anyone have knowledge on how to get the SMTP servers that are associated with Actions? We have 900+ email actions and I was curious if anyone was able to get this to show correctly? If I added a INNER JOIN it balloons up to 3-4 times the amount as SolarWinds appears to match against multiple SMTP servers for some reason. The SMTPServers table doesn't appear to have anything that relates to the Actions table. I've dug into many different tables to somehow bridge the gap but nothing that I do appear to work.
SELECT
[Actions].ActionTypeID AS ActionType,
[Actions].Title AS ActionName,
[Actions].Description AS Email,
[Actions].Assignments.CategoryType AS Action
FROM Orion.Actions AS [Actions]
WHERE [Actions].ActionTypeID = 'Email'