SQL脚本获取指定数据库的所有用户表记录数

set nocount on
if object_id(N'tempdb.db.#temp') is not null
drop table #temp
create table #temp (name sysname,count numeric(18))

insert into #temp
select o.name,i.rows
from sysobjects o,sysindexes i
where o.id=i.id and o.Xtype='U' and i.indid<2

select count(count) 总表数,sum(count) 总记录数 from #temp
select * from #temp order by count desc
set nocount off

posted on 2012-09-26 09:55  宋海鹏  阅读(473)  评论(0编辑  收藏  举报

导航