MS SQL Server 一次查询SQL数据库中所有表的记录数脚本

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 desc

DROP TABLE #temp

你可能感兴趣的:(SQL,DOTNET,数据库,sql,oracle)