Skip to content

Instantly share code, notes, and snippets.

@cbertolasio
Created February 6, 2018 05:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbertolasio/6e6a610cfa762c87dcd53377a5fdacd1 to your computer and use it in GitHub Desktop.
Save cbertolasio/6e6a610cfa762c87dcd53377a5fdacd1 to your computer and use it in GitHub Desktop.
a way to get row counts and table size for a given sql db
-- https://blog.sqlauthority.com/2017/05/25/sql-server-simple-query-list-size-table-row-counts/
USE [YourDBName] -- replace your dbname
GO
SELECT
s.Name AS SchemaName,
t.Name AS TableName,
p.rows AS RowCounts,
CAST(ROUND((SUM(a.used_pages) / 128.00), 2) AS NUMERIC(36, 2)) AS Used_MB,
CAST(ROUND((SUM(a.total_pages) - SUM(a.used_pages)) / 128.00, 2) AS NUMERIC(36, 2)) AS Unused_MB,
CAST(ROUND((SUM(a.total_pages) / 128.00), 2) AS NUMERIC(36, 2)) AS Total_MB
FROM sys.tables t
INNER JOIN sys.indexes i ON t.OBJECT_ID = i.object_id
INNER JOIN sys.partitions p ON i.object_id = p.OBJECT_ID AND i.index_id = p.index_id
INNER JOIN sys.allocation_units a ON p.partition_id = a.container_id
INNER JOIN sys.schemas s ON t.schema_id = s.schema_id
GROUP BY t.Name, s.Name, p.Rows
ORDER BY s.Name, t.Name
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment