Useful script that returns all user tables in a database: sizes and percentages of totals
############START#################
------------------SCRIPT ----------START-------------------------
-- Create the temp table for further querying
CREATE TABLE #temp(
tbl_id int IDENTITY (1, 1),
tbl_nam......