sql server 2008 查询所有表的记录数

CREATE TABLE #temp (TableName VARCHAR (255), RowCnt INT)
EXEC sp_MSforeachtable 'INSERT INTO #temp SELECT ''?'', COUNT(*) FROM ?'
SELECT TableName, RowCnt FROM #temp ORDER BY RowCnt

DROP TABLE #temp;

原文地址:https://www.cnblogs.com/wxy520/p/5333447.html