Created
February 24, 2018 23:54
-
-
Save royashbrook/0bc2e630a922b31e3fae414077774e69 to your computer and use it in GitHub Desktop.
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
| create table #t ( | |
| tablename sysname,row_count int, | |
| reserved varchar(50),data varchar(50), | |
| index_size varchar(50),unused varchar(50)) | |
| exec sp_msforeachtable 'insert #t exec sp_spaceused ''?''' | |
| select * from #t | |
| drop table #t |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment