만족

[MySQL] Database 실제 용량 확인하기 본문

[MySQL] Database 실제 용량 확인하기

DataBase/mysql Satisfaction 2021. 6. 13. 07:10

SELECT table_schema "DB Name", 
Round(Sum(data_length + index_length) / 1024 / 1024, 1) "DB Size in MB" 
FROM   information_schema.tables 
GROUP  BY table_schema; 

위 SQL로 확인해볼 수 있다.

 

정상적으로 잘 표시되는 것을 확인할 수 있다.

 

수정 없이 그대로 갖다 붙이면 된다.

 


Comments