반응형
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
- ssl이란?
- ssl프로토콜확인
- java 여러개 버전
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- aws
- mac os git error
- tls프로토콜확인
- java 버전 변경
- java 11
- easy
- yum install java
- statement.executequery() cannot issue statements that do not produce result sets.
- log error
- java 1.8 11
- 스프링부트테스트
- Java 1.8
- springboot
- error
- AWS CLI
- LeetCode
- Medium
- OpenFeign
- mysql executequery error
- parse
- xcrun: error: invalid active developer path
- springboottest
- JUnit
- java
- No tests found for given includes
Archives
- Today
- Total
목록mysql TABLES (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