Here you go bud!
dbo.notices
1) Stop the System Insight Manager Service
Backup your SIM DB Insight_V50_XXXXX
-- Notice Severity
----- 5 = Critical
----- 4 = major
----- 3 = minor
----- 100 = information
-- Notice Type
---- 1 = Discovered System - must not delete otherwise sim won't work
2) Open in SQL Management Studio for the SQL server. Right click the SIM db -> Run Query
-- for information
delete
from notices
where (
(noticeType != 1 ) and
(noticeSeverity = 100)
)
-- for critical
delete
from notices
where (
(noticeType != 1 ) and
(noticeSeverity = 5)
)
-- for minor
delete
from notices
where (
(noticeType != 1 ) and
(noticeSeverity = 3)
)
4) Open a command prompt on the sim server and run (from any directory) : mxconfigrepo –f ( Might take a while depending on amount in DB )
5) Restart SIM service