1. 논리적 사이즈 확인
select table_name as table,
data_length + index_length as logical size
from information_schema.tables
where table_schema = 'test';
혹은
show table status like 'test' ; -- data_length, index_length 값 확인
2. 물리적 사이즈 확인
select file_name, total_extents * extent_size as size
from information_schema.files
where file_name like '%test%';
'RDB > MySQL' 카테고리의 다른 글
mysql index statistics (0) | 2022.12.05 |
---|---|
mysql lock 확인 (0) | 2022.12.05 |
MySQL dual password (0) | 2022.12.02 |
mysql flush logs (0) | 2022.12.02 |
mysql shell script 사용법 (0) | 2022.11.30 |