SQL server 2005查询数据库表的数量和表的数据量
本文转载自:http://hi.baidu.com/ajyajyajy/item/4e2a7f4dc83393d2c1a592c1
use DBNAME
go
select * from sysobjects where xtype=‘U‘; --这是查询所有表的信息
select count(*) from sysobjects where xtype=‘U‘ --这是查询表的数量
select a.name, b.rows from sysobjects a with(nolock) join sysindexes b with(nolock) on b.id=a.id where a.xtype=‘U‘ and b.indid in (0,1) order by a.name asc --这是快速查询所有表中的数据量
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。