728x90
반응형
######DB 별 용량 체크#####
SELECT table_schema "Database Name",
SUM(data_length + index_length) / 1024 / 1024 "Size(MB)"
FROM information_schema.TABLES
GROUP BY table_schema;
######TABLE 별 용량 체크#####
SELECT
concat(table_schema,'.',table_name),
concat(round(data_length/(1024*1024*1024),2),'G') DATA,
concat(round(index_length/(1024*1024*1024),2),'G') idx,
concat(round((data_length+index_length)/(1024*1024*1024),2),'G') total_size,
round(index_length/data_length,2) idxfrac
FROM information_schema.TABLES
WHERE table_rows is not null;
728x90
반응형
LIST
'linux > DB' 카테고리의 다른 글
Oracle 계정 생성 & 권한부여 & 패스워드 변경 (0) | 2021.05.25 |
---|---|
무중단 리플리케이션 (0) | 2021.05.25 |
mysql 외부 접근 및 된 권한 확인 (0) | 2021.05.11 |
mysql 락 테이블 확인 (0) | 2021.05.10 |
slow 쿼리 로그 파일 (0) | 2021.05.10 |