Dear All,
I am trying to get a list of machines per error message type in a report, but cannot find where these are stored in the SQL db.
Can you shed some light on this please?
Many thanks,
DanZi
This thread was automatically locked due to age.
Dear All,
I am trying to get a list of machines per error message type in a report, but cannot find where these are stored in the SQL db.
Can you shed some light on this please?
Many thanks,
DanZi
Hello DanZi,
the following gives you a List of Computers with an outstanding Restart required:SELECT C.Name FROM [SOPHOS551].[dbo].[Errors] AS E INNER JOIN [SOPHOS551].[dbo].[AliveComputers] AS C ON E.ComputerID = C.ID WHERE E.Source = 'ALC' AND E.Number = 109 AND E.Outstanding = 1
This is just a reply considering your post's subject. Processing the Errors table isn't exactly simple.
Christian