I have a SQL (2005) server for which I need to monitor the amount of free disk space. It is not currently running a web server so a normal ASP/.Net monitor page won't work in this case. Is there any way that I can find the amount of free disk space on the server using only a SQL query?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Have you tried EXEC xp_fixeddrives ?

A decent list of stored procedures which aren't well documented here

link|improve this answer
feedback

Pretty good tip here (if you allow extended stored procedures)

Determine Free Disk Space in SQL Server 2000/2005

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.