Contents

Views 794 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

1. 테이블별 사이즈 확인 (쿼리 시점에 정확한 사이즈는 아니지만, 참고할 만한 데이터임)

SELECT 
    table_name,
    table_rows,
    round(data_length/(1024*1024),2) as 'DATA_SIZE(MB)',
    round(index_length/(1024*1024),2) as 'INDEX_SIZE(MB)'
FROM information_schema.TABLES
where table_schema = '데이터베이스이름'
GROUP BY table_name 
ORDER BY data_length DESC 
LIMIT 10;


2. Database 별 사이즈 확인 (쿼리 시점에 정확한 사이즈는 아니지만, 참고할 만한 데이터임)

SELECT 
    count(*) NUM_OF_TABLE,
    table_schema,concat(round(sum(table_rows)/1000000,2),'M') rows,
    concat(round(sum(data_length)/(1024*1024*1024),2),'G') DATA,
    concat(round(sum(index_length)/(1024*1024*1024),2),'G') idx,
    concat(round(sum(data_length+index_length)/(1024*1024*1024),2),'G') total_size,
    round(sum(index_length)/sum(data_length),2) idxfrac
FROM information_schema.TABLES
GROUP BY table_schema
ORDER BY sum(data_length+index_length) DESC LIMIT 10;


?

List of Articles
No. Category Subject Author Date Views
273 Database [mysql] MacOS에 MySQL 설치, 설정, 암호 재설정 file hooni 2017.12.15 1630
» Database [mysql] MySql DB/테이블 사이즈 확인을 위한 쿼리 hooni 2019.11.22 794
271 System/OS [mysql] MySQL server has gone away 에러 대응 hooni 2013.05.29 19392
270 System/OS [mysql] mysql user 생성시 ERROR 1364 hooni 2013.04.25 28621
269 Database [mysql] MySQL 데이터베이스 추가 및 사용자 추가 hooni 2019.11.22 796
268 Database [mysql] MySQL 백업 및 복구 hooni 2019.11.22 936
267 Database [mysql] MySql 에서 정렬 후 그룹 하는 방법 hooni 2015.05.07 3155
266 Database [mysql] MySQL 한글 깨짐 현상 해결하기(UTF8) hooni 2017.12.01 5651
265 Database [mysql] 루트 암호 초기화 hooni 2013.04.23 11127
264 System/OS [mysql] 시간 관련 SQL구문.. hooni 2013.04.23 10884
263 Database [mysql] 쓰레드가 계속 쌓이기 시작하고 사라지지 않을때.. hooni 2003.04.23 12862
262 Develop [mysql] 양력, 음력 DB데이터 file hooni 2013.04.23 7848
Board Pagination Prev 1 ... 71 72 73 74 75 76 77 78 79 80 ... 98 Next
/ 98