BEGIN
Declare ut int;
Set @ut = -1;
Select TotalFrag from defragmentation where DriveID=DID into @ut;
return ifnull(@ut,-1);
END