테이블들의 Row Count 가져오기!
SELECT [TableName] = so.name,
[RowCount] = MAX(si.rows)
FROM sysobjects so, sysindexes si
WHERE so.xtype = 'U' AND si.id = OBJECT_ID(so.name)
GROUP BY so.name ORDER BY 2 DESC
'SQL Server' 카테고리의 다른 글
[Powershell]SQL Server 복원 작업 (0) | 2015.04.07 |
---|---|
Upgrading SQL Server 2012 License Edition (0) | 2015.01.07 |
Object(SP, UDF 등) 검색 (0) | 2014.03.22 |
MS SQL Server 2008 R2에서 Collation 변경하기 (0) | 2014.03.22 |
시스템 테이블을 이용한 Table Names, Column Names, Data Types 조회 (0) | 2014.03.13 |