Created
April 30, 2020 06:42
-
-
Save skalahonza/13026445e759ac1693ef138db3113039 to your computer and use it in GitHub Desktop.
Get row count for all tables
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
SELECT | |
QUOTENAME(SCHEMA_NAME(sOBJ.schema_id)) + '.' + QUOTENAME(sOBJ.name) AS [TableName] | |
, SUM(sPTN.Rows) AS [RowCount] | |
FROM | |
sys.objects AS sOBJ | |
INNER JOIN sys.partitions AS sPTN | |
ON sOBJ.object_id = sPTN.object_id | |
WHERE | |
sOBJ.type = 'U' | |
AND sOBJ.is_ms_shipped = 0x0 | |
AND index_id < 2 -- 0:Heap, 1:Clustered | |
GROUP BY | |
sOBJ.schema_id | |
, sOBJ.name | |
ORDER BY [TableName] | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment