Click here to Skip to main content
15,885,278 members
Articles / Database Development / SQL Server / SQL Server 2008
Tip/Trick

Finding available free space in the disks of SQL Server

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
19 Mar 2012CPOL 8.5K   2  
Simple query to find the available hard disk space in the server

Introduction

As part of regular maintanence we needed to send a weekly report that included available harddisk space in our PROD SQL Server. This required a remote desktop login to the restrictive PROD environment and checking the space. We were unable to automate the status checks due to this particular item, after months of doing this as a manual activity found out that a simple procedure call will return the hard disk space from the Server machine.

Using the code

Just run the below procedure, no input parameters required!!

SQL
xp_fixeddrives

Output would be like this

SQL
drive MB free
----- -----------
C     31450
D     450047

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --