Sql Server获得每个表的行数

SELECT o.[name], ddps.[row_count]
FROM sys.indexes AS i
INNER JOIN sys.objects AS o ON i.[object_id] = o.[object_id]
INNER JOIN sys.dm_db_partition_stats AS ddps ON i.[object_id] = ddps.[object_id] AND i.[index_id] = ddps.[index_id]
WHERE i.[index_id] < 2 AND o.[is_ms_shipped] = 0
ORDER BY ddps.[row_count];
原文地址:https://www.cnblogs.com/dereklovecc/p/3673488.html