프로그래밍 언어/Database

MySQL 데이터베이스의 테이블 크기를 얻는 방법

Rateye 2021. 7. 7. 10:14
728x90
반응형
질문 : MySQL 데이터베이스의 테이블 크기를 얻는 방법은 무엇입니까?

이 쿼리를 실행하여 MySQL 데이터베이스에있는 모든 테이블의 크기를 가져올 수 있습니다.

show table status from myDatabaseName;

결과를 이해하는 데 도움이 필요합니다. 크기가 가장 큰 테이블을 찾고 있습니다.

어떤 열을 봐야합니까?

답변

이 쿼리를 사용하여 테이블의 크기를 표시 할 수 있습니다 (먼저 변수를 대체해야 함).

SELECT 
    table_name AS `Table`, 
    round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB` 
FROM information_schema.TABLES 
WHERE table_schema = "$DB_NAME"
    AND table_name = "$TABLE_NAME";

또는이 쿼리는 모든 데이터베이스의 모든 테이블 크기를 나열합니다.

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;
출처 : https://stackoverflow.com/questions/9620198/how-to-get-the-sizes-of-the-tables-of-a-mysql-database
728x90
반응형