Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
sp_helpdb 'TempDB'
Create Table #Temp(FileId Int, GroupId Int, Size Int, MaxSize Int, Growth int, Status Int, Perf Int, Name VarChar(100), Filename VarChar(1000))
exec sp_msforeachdb 'Insert Into #Temp Select * from [?]..sysfiles'
Select * From #Temp Order By size DESC
Drop Table #Temp