Skip to content

Instantly share code, notes, and snippets.

@alexvy86
Created August 23, 2012 06:14
Show Gist options
  • Save alexvy86/3433281 to your computer and use it in GitHub Desktop.
Save alexvy86/3433281 to your computer and use it in GitHub Desktop.
See row and size statistics for all tables in a DB in SQL Server
SET NOCOUNT ON
DBCC UPDATEUSAGE(0)
-- DB size.
EXEC sp_spaceused
-- Table row counts and sizes.
CREATE TABLE #t
(
[name] NVARCHAR(128),
[rows] CHAR(11),
reserved VARCHAR(18),
data VARCHAR(18),
index_size VARCHAR(18),
unused VARCHAR(18)
)
INSERT #t EXEC sp_msForEachTable 'EXEC sp_spaceused ''?'''
SELECT *
FROM #t
-- # of rows.
SELECT SUM(CAST([rows] AS int)) AS [rows]
FROM #t
DROP TABLE #t
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment