统计SQLServer2005表记录数

select b.[name] 表名,max(a.rowcnt) 记录数  
 from sysindexes a   join sys.objects b on b.object_id=a.id   
where b.type='U'   group by b.[name]  
原文地址:https://www.cnblogs.com/lixx/p/1953196.html