1
BEGIN
2
Declare score int;
3
Declare result int;
4
Declare Total int;
5
SELECT 1 As Result,
6
1 as Total,IFNULL(ROUND(100-((SUM(IF(h_computerstatsdaily.MEM<MemoryLimit,1*(MemoryWeight*.01),0)) +
7
SUM(IF(h_computerstatsdaily.CPU>CPULimit,1*(CPUWeight*.01),0)))/
8
((Count(*) * (1*(MemoryWeight*.01)))+(Count(*) * (1*(CPUWeight*.01))))) *100),100) as PerfScore
9
FROM managementScore,h_computerstatsdaily Join Computers Using (ComputerID) Where h_computerstatsdaily.EventDate=DATE(DATE_ADD(CURDATE(),interval -1 day)) and Computers.ClientID=CID into @result,@total,@score;
10
return @score;
11
END