Forum Replies Created

Viewing post 1 (of 2 total)

  • RE: script to display servernames with freediskspace

    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...

Viewing post 1 (of 2 total)