Viewing post 1 (of 1 total)
To see sizes of all tables in SQL 2005 use this:
DECLARE @tableName VARCHAR(1000);
CREATE TABLE #AllTables
(
row_num INT IDENTITY(1, 1),
...
December 14, 2010 at 6:20 pm
#1262593