Quick table size information

  • Comments posted to this topic are about the item Quick table size information

    Executive Junior Cowboy Developer, Esq.[/url]

  • What are your restrictions on republishing this script?

    412-977-3526 call/text

  • 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

  • robert.sterbal 56890 (7/4/2016)


    What are your restrictions on republishing this script?

    Use it to your heart's content.

    Executive Junior Cowboy Developer, Esq.[/url]

  • sequelgarrett (7/5/2016)


    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:

    Thanks for pointing that out.

    Executive Junior Cowboy Developer, Esq.[/url]

Viewing 5 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply