Stored procedure sp_spaceused can return information about the space used by a database object. Collect the names of all tables in the Asset database using
select name from sysobjects where xtype = 'U'
Use a cursor to loop through the table names to display space information to users.
This exercise is equivalent to exercise 7. Compare the solutions.