Unix Technical Forum

Space Available Within A Filegroup

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


Go Back   Unix Technical Forum > Database Server Software > Microsoft SQL Server > SQL Server

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-29-2008, 07:35 PM
Greg.Harabedian@gmail.com
 
Posts: n/a
Default Space Available Within A Filegroup

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?
Thanks,
Greg

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-29-2008, 07:35 PM
Erland Sommarskog
 
Posts: n/a
Default Re: Space Available Within A Filegroup

(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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 02:30 PM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
www.UnixAdminTalk.com