This STP help us find usage for any objects (includes table)
sp_spaceused [object_name]
By combining other things you got full table usage list from db
EXEC sp_MSforeachtable @command1=”EXEC sp_spaceused ‘?’”
–or
select ‘exec sp_spaceused ‘+name from sys.tables order by name;