SELECT TOP 100 Percent
   sysobjects.name,
   sysindexes.rows
 FROM sysindexes with(nolock)
   JOIN sysobjects with(nolock)
    ON sysindexes.id = sysobjects.id AND sysobjects.xtype = 'u'
WHERE sysindexes.indid in(0, 1)
order by rows desc