데이터베이스 내 각 테이블 용량 확인(내림차순)# DataBase/Mysql(MariaDB)2023. 12. 20. 16:06
Table of Contents
728x90
반응형
SELECT table_name AS "테이블명",
round(((data_length + index_length) / 1024 / 1024), 2) AS "테이블 용량(MB)"
FROM information_schema.tables
WHERE table_schema = 'your_database_name'
ORDER BY (data_length + index_length) DESC;
728x90
반응형
'# DataBase > Mysql(MariaDB)' 카테고리의 다른 글
유니온쿼리(Union Query)이용 결과값(Result Value) 합치기(Sum) (0) | 2023.01.30 |
---|---|
mysql binary log 설정 (0) | 2022.11.22 |
ERROR 1449 (HY000): The user specified as a definer ('mariadb.sys'@'localhost') does not exist (0) | 2022.11.15 |
mysql slow query 설정 (0) | 2022.11.11 |
mysql REGEXP(정규 표현식) (0) | 2022.11.04 |
@다크쉐라빔 :: 다크쉐라빔의 주절주절
안녕하세요. 이곳은 IT위주의 잡다한 정보를 올려두는 개인 블로그입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!