This is a discussion on Space Available Within A Filegroup within the SQL Server forums, part of the Microsoft SQL Server category; --> I am using SQL Server 2000. How can I tell how much free space is available within a particular ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| (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/pro...ads/books.mspx Books Online for SQL Server 2000 at http://www.microsoft.com/sql/prodinf...ons/books.mspx |
| Thread Tools | |
| Display Modes | |
|
|