SELECT table_schema "Database", ROUND(SUM(data_length+index_length)/1024/1024,1) "MB" FROM information_schema.TABLES GROUP BY 1;
+--------------------+--------+
| Database | MB |
+--------------------+--------+
| hello | 1086.7 |
| information_schema | 0.0 |
| jmnote | 217.3 |
| mysql | 0.5 |
+--------------------+--------+
SELECT SUM(data_length+index_length)/1024/1024 used_MB, SUM(data_free)/1024/1024 free_MB FROM information_schema.tables;
+---------------+---------------+
| used_MB | free_MB |
+---------------+---------------+
| 2775.87963295 | 5230.69857121 |
+---------------+---------------+
'[ 서버 & DB 관련 ] > MySQL' 카테고리의 다른 글
mysql 특정 단어를 정렬(order by)에 반영하기 (0) | 2022.10.25 |
---|---|
mysql 문자열 합치기 concat() (0) | 2021.12.16 |
ON DUPLICATE KEY UPDATE (0) | 2021.11.22 |
mysql 랜덤 조회 (0) | 2021.09.25 |
mysql date컬럼에 현재 날짜시간 기본값으로 설정 (0) | 2021.09.15 |