Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Script to find system info..

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

Viewing post 1 (of 1 total)