sinu12345 (11/26/2009)
How to use the below script using cursor to get the same output
DECLARE @diskspace table (SNo int identity(1,1),Servername Varchar(255),Freediskspace INT)
INSERT INTO @diskspace SELECT ServerName,Sum(FreeSpace_MB/1024) from dbo.DiskDriveInfo group by...