Posted by Erland Sommarskog on 10/01/73 11:41
(Greg.Harabedian@gmail.com) writes:
> I am using SQL Server 2000. How can I tell how much free space is
> available within a particular filegroup? What query can I run to get
> this information?
The used space in a file group in MB:
SELECT SUM(reserved)*8192/1000000 FROM sysindexes
WHERE indid IN (0, 1)
AND groupid = filegroup_id('YOURGROUP')
The total space available in a file group in MB:
SELECT SUM(size)*8192/1000000 FROM sysindexes
WHERE groupid = filegroup_id('YOURGROUP')
--
Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx
[Back to original message]
|