Viewing post 1 (of 1 total)
-- This will display Drive Space.
CREATE TABLE #FixedDrives
(DriveLetter VARCHAR(10),
MB_Free DEC(20,2)
)
INSERT INTO #FixedDrives EXEC Master..XP_FixedDrives
SELECT * FROM #FixedDrives
DROP TABLE #FixedDrives
November 28, 2008 at 8:05 am
#904806