码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2016-05-24 13:35:06      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

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中的每个表数据行数

标签:

原文地址:http://www.cnblogs.com/dupeng0811/p/5522985.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!