1
BEGIN
2
Declare score int;
3
Declare result int;
4
Declare Total int;
5
SELECT 1 As Result,
6
1 as Total,
7
IFNULL(100-ROUND(((SUM(IF(h_stats.EventLogSystemErrors>EventLogSystemCount,1*(EventLogSystemWeight*.01),0)) +
8
SUM(IF(h_stats.EventLogSecurityErrors>EventLogSecurityCount,1*(EventLogSecurityWeight*.01),0))+
9
SUM(IF(h_stats.EventLogApplicationErrors>EventLogAppCount,1*(EventLogAppWeight*.01),0)))/
10
((Count(*) * (1*(EventLogSystemWeight*.01)))+(Count(*) * (1*(EventLogSecurityWeight*.01)))+(Count(*) * (1*(EventLogAppWeight*.01)))
11
)) *100),100) as EventScore
12
FROM managementScore,h_stats Join Computers Using (ComputerID) Where h_stats.StatDate>DATE_ADD(NOW(),interval -1 day) and Computers.ClientID=CID into @result,@total,@score;
13
return @score;
14
END