• Thanh Ngay Nguyen (8/5/2010)


    Good point, Jason. Thanks!

    Instead of using dbo.sysindexes, sys.partitions can be used to obtain the rowcount

    SELECT ( SCHEMA_NAME(o.schema_id) + '.' + OBJECT_NAME(o.object_id) ) AS TblName,

    p.rows AS RowCnt

    FROM sys.partitions AS p

    INNER JOIN sys.objects AS o ON p.object_id = o.object_id

    WHERE o.type_desc = 'USER_TABLE'

    AND p.index_id IN ( 0, 1 )

    You're welcome and thanks for updating your script.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events