-- 테이블별 사용 용량
SELECT table_name = convert(varchar(30), min(o.name))
, table_size = ltrim(str(sum(cast(reserved as bigint)) * 8192 / 1024.,15,0) + 'KB')
FROM sysindexes i
INNER JOIN
sysobjects o
ON (o.id = i.id)
WHERE i.indid IN (0, 1, 255)
AND o.xtype = 'U'
GROUP BY i.id
-- 용량별 소팅
SELECT table_name = convert(varchar(30), min(o.name))
, table_size = convert(int, ltrim(str(sum(cast(reserved as bigint)) * 8192 / 1024., 15, 0))), UNIT = 'KB'
FROM sysindexes i
INNER JOIN
sysobjects o
ON (o.id = i.id)
WHERE i.indid IN (0, 1, 255)
AND o.xtype = 'U'
GROUP BY i.id
ORDER BY table_size DESC
-- 테이블별 Row 수
SELECT o.name
, i.rows
FROM sysindexes i
INNER JOIN
sysobjects o
ON i.id = o.id
WHERE i.indid < 2
AND o.xtype = 'U'
ORDER BY i.id
출처 : http://unions5.tistory.com/92
'프로그래밍 > MS_SQL' 카테고리의 다른 글
mssql 파일 크기 줄이기 (0) | 2015.04.14 |
---|---|
MSSQL COMMENTS 생성 (0) | 2015.04.13 |
오라클 재귀쿼리를 MSSQL 재귀쿼리로 만드는 방법 (0) | 2015.02.13 |
Session 관리 ( Inproc,StateServer,SQL Server ) (0) | 2013.06.14 |
mssql 2008 로그 축소 (0) | 2013.04.29 |