EXEC sp_spaceused 'tablename'
This will return a single result set that provides the following information:
Name - table name
Rows - the number of rows in the table
Reserved - the amount of total reserved space for the table
Data - the amount of space used by the data for the table
Index_Size - amount of space used by table indexes
Not used - the amount of used space in the table
source share