一種快速統計SQL Server每個錶行數的方法

rgqancy發表於2017-03-07

轉載自:http://www.cnblogs.com/kenyang/archive/2013/04/09/3011447.html

我們都知道用聚合函式count()可以統計表的行數。如果需要統計資料庫每個表各自的行數(DBA可能有這種需求),用count()函式就必須為每個表生成一個動態SQL語句並執行,才能得到結果。以前在網際網路上看到有一種很好的解決方法,忘記出處了,寫下來分享一下。

該方法利用了sysindexes 系統表提供的rows欄位。rows欄位記錄了索引的資料級的行數。解決方法的程式碼如下:

1
2
3
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

 

該方法的優點有:

    • 執行速度非常快。
    • 由於不訪問使用者表,不會在使用者表上放置鎖,不會影響使用者表的效能。
    • 可以將該查詢寫成子查詢、CTE或者檢視,與其它查詢結合使用。

相關文章