Created
August 26, 2015 10:59
-
-
Save evgenylavelin-xx/7108c5e3d765e158e1c0 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
| DBCC UPDATEUSAGE (0); | |
| CREATE TABLE #t([имя таблицы] varchar(255), [строк] varchar(255), [зарезервировано] varchar(255), [всего данных] varchar(255), [размер индексов] varchar(255), [свободно] varchar(255)); | |
| INSERT INTO #t | |
| exec sp_msforeachtable N'exec sp_spaceused ''?'''; | |
| SELECT * FROM #t ORDER BY CONVERT(bigint, REPLACE([всего данных], ' KB', '')) DESC; | |
| DROP TABLE #t; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment