Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Count all records the tables

    What are the benefits of this script over something simple like the below?

    [Code="SQL"]

    SELECT st.Name, sp.Rows

    from sys.tables st

    JOIN sys.partitions sp

    on st.object_id = sp.object_id

    Order by st.Name

    [/Code]

    I've ran them both, i'm getting the...

Viewing post 1 (of 1 total)