求快速统计SQL Server 某个库里所有表的方法,count() 函数很慢的。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求快速统计SQL Server 某个库里所有表的方法,count() 函数很慢的。相关的知识,希望对你有一定的参考价值。
我们都知道用聚合函数count()可以统计表的行数。如果需要统计数据库每个表各自的行数(DBA可能有这种需求),用count()函数就必须为每个表生成一个动态SQL语句并执行,才能得到结果。以前在互联网上看到有一种很好的解决方法,忘记出处了,写下来分享一下。该方法利用了sysindexes 系统表提供的rows字段。rows字段记录了索引的数据级的行数。解决方法的代码如下:
select schema_name(t.schema_id) as [Schema], t.name as TableName,i.rows as [RowCount]
from sys.tables as t, sysindexes as i
where t.object_id = i.id and i.indid <=1
该方法连接了sys.tables视图,从中找出表名和schema_id,再通过schema_name函数获取表的架构名。筛选条件i.indid <=1 只选聚集索引或者堆,每个表至少有一个堆或者聚集索引,从而保证为每个表返回一行。以下是在我的AdventureWorks数据库中运行该查询返回的部分结果:
Schema TableName RowCount
——————– ——————– ———–
Sales Store 701
Production ProductPhoto 101
Production ProductProductPhoto 504
Sales StoreContact 753
Person Address 19614
Production ProductReview 4
Production TransactionHistory 113443
Person AddressType 6
该方法的优点有:
1.运行速度非常快。
2.由于不访问用户表,不会在用户表上放置锁,不会影响用户表的性能。
3.可以将该查询写成子查询、CTE或者视图,与其它查询结合使用。
望采纳 参考技术A select schema_name(t.schema_id) as [Schema], t.name as TableName,i.rows as [RowCount]
from sys.tables as t, sysindexes as i
where t.object_id = i.id and i.indid <=1追问
这是要在被查询的那个库上执行吗?
追答是的
本回答被提问者采纳 参考技术B查询系统表吧!
系统表里面有存储表行数的哦!
如果是sqlserver 试一下下面的方法
快速获取表行数的方法
如有疑问,及时沟通!
SQL Server 索引运维
sql server检测库里所有表的索引碎片
SELECT schema_name(T.schema_id) AS Schema_Name,T.Name AS Table_Name,I.name AS Index_Name, I.type AS Index_Type,D.avg_fragmentation_in_percent AS avg_fragmentation_in_percent FROM sys.dm_db_index_physical_stats(DB_id(‘DBNAME‘),null, null, null, null) AS D INNER JOIN sys.indexes AS I WITH(NOLOCK) ON D.index_id=I.index_id AND D.object_id=I.object_id INNER JOIN sys.tables AS T WITH(NOLOCK) ON T.object_id=D.object_id WHERE I.type>0 AND T.is_ms_shipped=0 AND D.avg_fragmentation_in_percent>=30 order by D.avg_fragmentation_in_percent desc
SQL Server 重建所有表索引方法
USE My_Database; DECLARE @name varchar(100) DECLARE authors_cursor CURSOR FOR Select [name] from sysobjects where xtype=‘u‘ order by id OPEN authors_cursor FETCH NEXT FROM authors_cursor INTO @name WHILE @@FETCH_STATUS = 0 BEGIN DBCC DBREINDEX (@name, ‘‘, 90) FETCH NEXT FROM authors_cursor INTO @name END deallocate authors_cursor
以上是关于求快速统计SQL Server 某个库里所有表的方法,count() 函数很慢的。的主要内容,如果未能解决你的问题,请参考以下文章