Retrive DB and Table Disk Usage
要怎麼查看資料與資料表磁碟空間使用的相關資訊?
資料庫您可使用 exec sys.sp_spaceused 這個 SP
資料表您可使用 EXEC sp_msforeachtable 'sp_spaceused "?"'
http://www.sqlhacks.com/index.php/Administration/RecordsForAllTables
當然,您還可以使用 SQL Server 內建的 Report 功能
資料庫右鍵 > Reports > Standard Reports > Disk Usage by Table