Skip to content

Instantly share code, notes, and snippets.

@mikerodionov
Created August 8, 2017 09:43
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 mikerodionov/b4031de752c023f8d6c56de114fd5f22 to your computer and use it in GitHub Desktop.
Save mikerodionov/b4031de752c023f8d6c56de114fd5f22 to your computer and use it in GitHub Desktop.
CREATE TABLE #counts
(
table_name varchar(255),
row_count int
)
EXEC sp_MSForEachTable @command1=
'INSERT #counts (table_name, row_count) SELECT ''?'', COUNT(*) FROM ?'
SELECT table_name, row_count FROM #counts ORDER BY table_name, row_count DESC
DROP TABLE #counts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment