SQLSERVER 数据库查看各表的记录数

Posted 有梦就能实现

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQLSERVER 数据库查看各表的记录数相关的知识,希望对你有一定的参考价值。

select   a.name as 表名,max(b.rows) as 记录条数   from   sysobjects   a   ,sysindexes   b     
  where   a.id=b.id   and   a.xtype=‘u‘   
group   by   a.name   
order by max(b.rows) desc
 

select SUM(记录条数) as 总记录数 from(
  select top 10000 a.name as 表名,max(b.rows) as 记录条数 from sysobjects a ,sysindexes b
  where a.id=b.id and a.xtype=‘u‘
  group by a.name
  order by max(b.rows) desc
) t1

以上是关于SQLSERVER 数据库查看各表的记录数的主要内容,如果未能解决你的问题,请参考以下文章

oracle查看所有表及各表行数

sqlserver 查询数据库各表的数据量

sqlserver 查询数据库各表的数据量

sqlserver 查询数据库各表的数据量

Datagrip怎样查看各表数据量?

如何查看sqlserver 表空间是不是满