Skip to content

Commit

Permalink
Fix microsoft#58: Default sort order for DB size widget (microsoft#111)
Browse files Browse the repository at this point in the history
Change default sort order for the DB size widget to descending
  • Loading branch information
mwiedemeyer authored and kevcunnane committed Nov 20, 2017
1 parent ae7adad commit 1d89cb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/insights-default/sql/db_size.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ select top 10
(select sum(size) from fs where type = 1 and fs.database_id = db.database_id) LogFileSizeMB
from sys.databases db
where database_id > 4
order by DataFileSizeMB
order by DataFileSizeMB desc

0 comments on commit 1d89cb6

Please sign in to comment.