1. 모든 데이터베이스의 크기 조회
SELECT table_schema "DB_name", SUM( data_length + index_length) / 1024 / 1024
"Data Base Size in MB" FROM information_schema.TABLES GROUP BY table_schema ;
2. 특정 데이터베이스의 테이블 별 데이터 건수, 사이즈, 인덱스 크기 조회
SELECT table_name, table_rows, data_length, index_length,
ROUND(((data_length + index_length) / 1024 / 1024),2) "Size in MB"
FROM information_schema.TABLES WHERE table_schema = "DB_name";
'IT와 생활' 카테고리의 다른 글
[Tip] WACK 커맨드 모드로 실행하기 (0) | 2012.11.28 |
---|---|
WACK (Windows App Certification Kit) for Windows 8 (0) | 2012.10.22 |
오픈 소스 페어와이즈 테스트 케이스 생성 툴 - AllPairs 매뉴얼 (0) | 2010.11.16 |
KVM-over-IP 구매 가이드 (0) | 2010.11.10 |
라리탄 Dominion KX2 KVM 사용자 가이드 (0) | 2010.11.09 |
WRITTEN BY
,