Created
November 20, 2019 22:31
-
-
Save james-s-tayler/d42e1cbeac9a17c4cf9c5a76dfec73e1 to your computer and use it in GitHub Desktop.
This file contains 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 distinct(t.name), s.row_count from sys.tables t | |
join sys.dm_db_partition_stats s | |
on t.object_id = s.object_id | |
where t.is_ms_shipped = 0 | |
order by row_count desc; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment