Home > Microsoft .Net Development Tips > Microsoft SQL Server > Tablespace usage view
Win Development Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

MICROSOFT SQL SERVER

Tablespace usage view


Andrew Barringer
12.10.2002
Rating: --- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


This view allows you to easily see the top 10% by Row Count, Space Used, etc. This is useful for answering the question "what's taking up all the space in my database?" I wrote it when asked to find what table(s) were using all the space in a particular database. Not being familiar with the database I used Enterprise Manager Taskpad-> Tables to find large tables and quickly realized the ability to run a query to find the Top 10 tables by spaced used would be very handy. A quick note on the "Cast(8192 as BigInt)." At first, this seems nonsensical but without it any large table may generate an integer overflow during the multiplication. This tip has been tested specifically on SQL 2000 Developer, Standard, and Enterprise. Should work on all editions and service packs of SQL 2000.

CREATE VIEW vw_SpaceUsed
AS
SELECT 
 OBJECT_NAME(id) AS ObjectName,
 SUM(CASE WHEN indid in (0,1,255) THEN rows ELSE 0 END) AS Rows,
 ((SUM(CASE WHEN indid in (0,1,255) THEN Reserved ELSE 0 END) * Cast(8192 as BigInt)) / 1024) As Reserved,
 ((SUM(CASE WHEN indid in (0,1,255) THEN dpages ELSE 0 END) * Cast(8192 as BigInt)) / 1024) AS Data,
 (((SUM(CASE WHEN indid in (0,1,255) THEN used ELSE 0 END) - SUM(CASE WHEN indid in (0,1,255) THEN dpages ELSE 0 END)) * Cast(8192 as BigInt) ) / 1024) as Index_Size,
 (((SUM(CASE WHEN indid in (0,1,255) THEN Reserved ELSE 0 END) - SUM(CASE WHEN indid in (0,1,255) THEN Used ELSE 0 END))  * Cast(8192 as BigInt)) / 1024) as Unused
FROM
 sysindexes
WHERE
 OBJECTPROPERTY(id,N'IsMSShipped') = 0
GROUP BY 
 OBJECT_NAME(id)

For More Information

  • Feedback: E-mail the editor with your thoughts about this tip.
  • More tips: Hundreds of free SQL Server tips and scripts.
  • Tip contest: Have a SQL Server tip to offer your fellow DBAs and developers? The best tips submitted will receive a cool prize -- submit your tip today!
  • Ask the Experts: Our SQL, database design, Oracle, SQL Server, DB2, metadata, and data warehousing gurus are waiting to answer your toughest questions.
  • Forums: Ask your technical SQL Server questions--or help out your peers by answering them--in our active forums.
  • Best Web Links: SQL Server tips, tutorials, and scripts from around the Web.

Rate this Tip
To rate tips, you must be a member of SearchWinDevelopment.com.
Register now to start rating these tips. Log in if you are already a member.




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   



RELATED CONTENT
Microsoft SQL Server
Using the Visual Studio 2005 DataSet Designer to build a data access layer
The CTE, the hierarchical query and SQL Server 2005
SQL Server 2005 recursive functions and the CTE
Choose the right .NET data provider, optimize application performance
The fallacy of the data layer -- or, a new architectural model for software designs
Book excerpt: ADO.NET and SQL Server 2005
Addressing common SQL Server questions
Book Excerpt: The .NET Framework and SQL Server 2005
WinForms development using SQL Server 2005 and Visual Basic 2005
Configuring ASP.NET 2.0 apps to SQL Server 2005 databases

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



Database Programming Solutions - .NET XML, Visual Studio LINQ, ORM .NET
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 2000 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts