Need a suggestion (or prewritten proc/sql) to render all table names and their corresponding space allocations and usage for tables in a given Database.
This renders all user table info:
select * from dbo.sysobjects where OBJECTPROPERTY(id, N'IsUserTable') = 1 order by name
Does anyone have anything in their vast bag of tricks??
Much appreciate in advance!
This renders all user table info:
select * from dbo.sysobjects where OBJECTPROPERTY(id, N'IsUserTable') = 1 order by name
Does anyone have anything in their vast bag of tricks??
Much appreciate in advance!