检查表的数据量
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 b.rows desc
下载检查表的数据量用户还喜欢
检查表的数据量
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 b.rows desc
评论