查看SqlAzure和SQLServer中的每个表数据行数

Posted 每天都有新发现

tags:

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

SqlAzure中的方式:

select t.name ,s.row_count from sys.tables t
join sys.dm_db_partition_stats s
ON t.object_id = s.object_id
and t.type_desc = USER_TABLE
and t.name not like %dss%
and s.index_id = 1
order by row_count desc

 SQLServer的方式:

select  a.name as 表名,b.rows as 表数据行数
from sysobjects a inner join sysindexes b
on a.id = b.id
where   a.type = u
and b.indid in (0,1)
--and a.name not like ‘t%‘
order by b.rows desc

 

以上是关于查看SqlAzure和SQLServer中的每个表数据行数的主要内容,如果未能解决你的问题,请参考以下文章

SQL Server 使用没有主键的聚集索引创建表

查看SQLServer数据库每个表占用的空间大小

查看MSSQL数据库每个表占用的空间大小

Sql Azure - 跨数据库查询

sql 查询某个库中的每个表的记录行数

pl/sql如何现实像sqlserver中的树形结构目录界面,就是能查看表视图那样的界面。