June 10, 2016 at 2:50 pm
Comments posted to this topic are about the item Quick table size information
July 4, 2016 at 8:07 am
What are your restrictions on republishing this script?
412-977-3526 call/text
July 5, 2016 at 5:49 am
This only works within the dbo schema. To have it work with all tables, you'd need to change line 39 to do something like this:
select quotename(s.name) + '.' + quotename(t.name)
from sys.tables t
inner join sys.schemas s
on t.schema_id = s.schema_id
July 5, 2016 at 10:39 am
July 5, 2016 at 10:39 am
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply