Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Row count of all tables

    The following query also gives the same results without creating a table.

    select

    TableName = object_name(id),

    [RowCount] = max(rows)

    from sysindexes

    group by id

Viewing post 1 (of 1 total)