티스토리 뷰
MySQL 용량 확인
DB를 사용하다 보면 DB 또는 table별 용량 확인이 필요하고 이를 위해서는 information_schema 이용한다.
1. DB 용량확인 -> zabbix db 용량 확인
SELECT table_schema "Database Name",
SUM(data_length + index_length) / 1024 / 1024 "Size(MB)"
FROM information_schema.TABLES
GROUP BY table_schema;
2.table 용량확인 -> zabbix의 history_unit 테이블 용량 확인
먼저 zabbix db를 선택하고 show tables;로 확인 한다.
이후 아래 쿼리문으로 history_unit 테이블의 사이즈를 확인 한다.
SELECT
concat(table_schema,'.',table_name),
concat(round(table_rows/1000000,2),'M') rows,
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_name = 'history_uint' ;
'DB' 카테고리의 다른 글
[mysql] 유저 생성 및 삭제 (0) | 2017.07.20 |
---|---|
[mysql] 기초 쿼리문 (0) | 2017.07.20 |
[mysql] DB 백업 및 복원 (0) | 2017.07.20 |
- Total
- Today
- Yesterday
- 특정 라인삭제
- kernel 변경
- 리눅스 커맨드 로그남기기
- DL20 GEN9 장비에 CentOS 7
- shell connmad log
- nxos ansible
- ipmi
- vm rac
- oracle linux8 kernel
- 특정 문구 치환
- ILO
- chrony
- dl20
- centos7 ntp
- cgroup
- dl20 centos7
- 윈도우 cmd 계정 관리
- cisco ansible
- 윈도우서버 계정 관려
- ISCSI 볼륨 RAC
- ios ansible
- windows.old 강제삭제
- CentOS 7 GUI
- linux command log
- cmd로 계정 생성
- ansible network
- dl20 g9 centos7 설치
- ansible ios
- cmd로 윈도우 계정 관리
- nutanix rac
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |