1. 개별 테이블 조회
SELECT
table_name AS `Table`,
round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB`
FROM information_schema.TABLES
WHERE table_schema = "DB명"
AND table_name = "테이블명";
2. 테이블 전체 조회
해당 디비 선택 후,
SELECT
table_schema as `Database`,
table_name AS `Table`,
round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB`
FROM information_schema.TABLES
ORDER BY (data_length + index_length) DESC;
'MySQL, MariaDB' 카테고리의 다른 글
특정 테이블 데이터 백업 및 복구 (0) | 2016.03.19 |
---|---|
order by field () (0) | 2016.03.14 |
MySQL unauthenticated user login state 계속 발생시 (0) | 2016.01.13 |
too many connections, max_connections, wait_timeout (0) | 2016.01.13 |
MySQL 5.7.9 root 비밀번호 재설정 (1) | 2015.12.02 |