Following the discussion in How to measure table size in GB in a table in SQL, I\'m looking for a solution to measure the space used by all the tables of a SQL Server individual
I'm assuming your trying to use sp_spaceused to find the size for ALL tables in a db?
If so, you can do this:
USE database_name GO sp_msforeachtable 'exec sp_spaceused [?]'