Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • SQl Server : Get size of tables in database

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 573
    Comment on it

    Many times when we  manage SQL server databases we need to  determine how much space each table is consuming on disk. In this blog we will learn two approaches for solving this frequently encountered common problem.

    Approach 1:

    We can use the below query to get table wise usage details:

    1. SELECT
    2. tab.NAME AS [Table Name],
    3. sch.Name AS [Schema Name],
    4. prt.rows AS [Row Counts],
    5. SUM(aunit.total_pages) * 8 AS [Total Space in KB],
    6. SUM(aunit.used_pages) * 8 AS [Used Space in KB],
    7. (SUM(aunit.total_pages) - SUM(aunit.used_pages)) * 8 AS [Unused Space in KB]
    8. FROM
    9. sys.tables tab
    10. INNER JOIN
    11. sys.indexes indx ON tab.OBJECT_ID = indx.object_id
    12. INNER JOIN
    13. sys.partitions prt ON indx.object_id = prt.OBJECT_ID AND indx.index_id = prt.index_id
    14. INNER JOIN
    15. sys.allocation_units aunit ON prt.partition_id = aunit.container_id
    16. LEFT OUTER JOIN
    17. sys.schemas sch ON tab.schema_id = sch.schema_id
    18. WHERE
    19. tab.is_ms_shipped = 0
    20.     AND
    21.     indx.OBJECT_ID > 255
    22. GROUP BY
    23. tab.Name, sch.Name, prt.Rows
    24. ORDER BY
    25. tab.Name
    26.  


    Approach 2:

    If you are using SQL Server Management Studio, you can avoid  running the above  query and instead use a report.

    To access the report follow the below steps:

    1. Right click on the database
    2. Navigate to Reports > Standard Reports > Disk Usage By Table


     

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: