데이터베이스 내 각 테이블 용량 확인(내림차순)
# DataBase/Mysql(MariaDB)2023. 12. 20. 16:06데이터베이스 내 각 테이블 용량 확인(내림차순)

SELECT table_name AS "테이블명", round(((data_length + index_length) / 1024 / 1024), 2) AS "테이블 용량(MB)" FROM information_schema.tables WHERE table_schema = 'your_database_name' ORDER BY (data_length + index_length) DESC;

mysql slow query 설정
# DataBase/Mysql(MariaDB)2022. 11. 11. 08:05mysql slow query 설정

영구적적용 my.cnf 위치확인 [darksharavim]mysql --verbose --help | grep 'my.cnf' /etc/my.cnf ~/.my.cnf my.cnf설정 [mysqld] # slow query on = 1, slow query off = 0 slow_query_log = 1 # n초이상 걸렷을 경우 query_long_time = 5 # file이 아닌 table도 가능하며 # table로 할 경우 logfile경로 옵션 주석처리 log_output = file # defualt name = host_name-slow.log slow_query_log_file = /var/log/mysql/slowquery.log mysql service restart 한시적 적용 sessi..

DBeaver(DB 무료 접속툴)
# DataBase/Mysql(MariaDB)2022. 10. 27. 09:35DBeaver(DB 무료 접속툴)

아래 링크에서 커뮤니티 버전으로 다운로드 Download | DBeaver Community Download | DBeaver Community Download Tested and verified for MS Windows, Linux and Mac OS X. Install: Windows installer – run installer executable. It will automatically upgrade version (if needed). MacOS DMG – just run it and drag-n-drop DBeaver into Applications. Debian package dbeaver.io

[mysql]특정DB 전체 테이블 삭제
# DataBase/Mysql(MariaDB)2022. 10. 11. 17:57[mysql]특정DB 전체 테이블 삭제

SET @tables = NULL; SELECT GROUP_CONCAT(table_schema, '.', table_name) INTO @tables FROM information_schema.tables WHERE table_schema = '[DB명]'; SET @tables = CONCAT('DROP TABLE ', @tables); PREPARE stmt FROM @tables; EXECUTE stmt; DEALLOCATE PREPARE stmt; 특정 테이블만 삭제해야할 경우는 조건문에 아래와 같이 추가하면됩니다. AND table_name LIKE '%[테이블명]%'; result SET @tables = NULL > OK > Time: 0.003s SELECT GROUP_CONCAT(tabl..

[mysql]innodb 메모리별 설정값 예시
# DataBase/Mysql(MariaDB)2022. 9. 29. 08:25[mysql]innodb 메모리별 설정값 예시

​ default_storage_engine = InnoDB 기본 데이타베이스 엔진으로 InnoDB를 사용한다는 것 표시 innodb_buffer_pool_size 운영중인 시스템의 DB 크기 이상을 할당. 시스템 메모리의 65%~75% 권장, 시스템 메모리 8GB RAM라면 일반적으로 5~6GB 정도 할당. buffer pool이 너무 작으면 페이지가 buffer pool에서 플러시 되어 잠시 후 다시 필요하게 되므로 과도한 I/O 가 발생할 수 있으며, 너무 큰 경우 메모리 경쟁으로 스와핑이 발생할 수 있음. innodb_log_file_size 데이타베이스 충돌 발생 시 다시 실행하거나 이전으로 되돌릴 때 사용하는 메모리. 지나치게 크면 복구 시간이 길어지면서 비효율적이 될 수 있음. 위에서 설정한..

image