SQL SERVER 2012 Hosting :: How to find the size of all tables in SQL Server database

Find the size of all tables in SQL Server database

SQL Server gives you everything its stored procedure sp_spaceused. Unfortunately this SP does not support iterating over all tables in a database, so we needed to leverage another (undocumented) Stored Procedure sp_msForEachTable.

Here I will show how to find size of all table in SQL SERVER.

After executing this, you will get the size of all tables in your database 😀 😀