- DB별 용량 조회
SELECT
table_schema AS 'DBName', --
ROUND(SUM(data_length+index_length)/1024/1024, 1) AS 'Size(MB)'
FROM information_schema.tables
GROUP BY table_schema
ORDER BY 2 DESC;
- Table별 용량조회
SELECT
table_name AS 'TableName',
MAX(TABLE_SCHEMA) AS 'DBName',
ROUND(SUM(data_length+index_length)/(1024*1024), 2) AS 'All(MB)',
ROUND(data_length/(1024*1024), 2) AS 'Data(MB)',
ROUND(index_length/(1024*1024), 2) AS 'Index(MB)'
FROM information_schema.tables
GROUP BY table_name
ORDER BY data_length DESC;
서버 용량체크할 때 좋음 ㅋ
'개발 관련' 카테고리의 다른 글
php get / post 요청 길이 제한 (0) | 2022.09.16 |
---|---|
jquery 자동완성 구현하기 (0) | 2022.09.14 |
파이선 크롤링 - 동적 페이지 크롤링 (0) | 2022.05.03 |
리눅스(linux) 폴더별 용량 확인하기 (0) | 2022.01.18 |
mariadb subquery 10.2 ? (0) | 2021.08.10 |
댓글