set nocount on
if object_id(N'tempdb.db.#temp') is not null drop table #tempcreate table #temp (name sysname,count numeric(18))insert into #temp
select o.name,i.rowsfrom sysobjects o,sysindexes i where o.id=i.id and o.Xtype='U' and i.indid<2select count(count) 总表数,sum(count) 总记录数 from #temp
select * from #temp order by count descset nocount off