Created
April 25, 2013 11:45
-
-
Save jdaigle/5459155 to your computer and use it in GitHub Desktop.
"How To Obtain The Size Of All Tables In A SQL Server Database (see http://therightstuff.de/CommentView,guid,df930155-f60f-4f56-ab33-f1352ff091a1.aspx)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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