반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- java version
- springbatch error
- springboottest
- java
- log error
- easy
- error
- JUnit
- java 1.8 11
- AWS CLI
- 스프링부트테스트
- Java 1.8
- property or field 'jobparameters' cannot be found on object of type
- LeetCode
- no sources given
- Medium
- el1008e
- mac os git error
- aws
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- No tests found for given includes
- yum install java
- java 여러개 버전
- parse
- querydsl no sources given
- java 11
- java 버전 변경
- OpenFeign
- maybe not public or not valid?
- springboot
Archives
- Today
- Total
목록mysql 데이터 크기 확인 (1)
쩨이엠 개발 블로그
[mysql] DB Table 데이터 크기 확인하기 및 TABLES 필드 설명
Mysql에서 table에 쌓인 데이터 크기를 알고 싶은 경우 information_schema를 이용하면 알 수 있다 SELECT table_name, -- 테이블 명 table_rows, -- 전체 row 수 data_length, -- 저장된 데이터 크기 (Bytes) round(data_length/table_rows), -- 데이터 평균 크기(계산) avg_row_length -- 데이터 평균 크기(컬럼) FROM information_schema.TABLES WHERE table_name = '테이블명' AND 조건 GROUP BY table_name ORDER BY data_length DESC; data_length에서 table_rows로 나눠도 평균 크기를 알 수 있지만 avg_row_..
개발/ETC
2023. 5. 3. 19:29