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 |
Tags
- JavaScript
- GIT
- web.xml
- Source
- xargs
- port
- VirtualBox
- resource
- find
- Windows 10
- tomcat
- bash
- Mac
- vscode
- Windows
- IntelliJ
- Quartz
- netsh
- 단축키
- 네트워크
- context
- grep
- lsof
- import
- ssh
- Eclipse
- 줄바꿈 문자
- plugin
- profile
- maVen
Archives
- Today
- Total
develog
[mariadb] deadlock, isolation level 본문
-- deadlock 확인
show engine innodb status;
-- isolation 확인
select @@global.tx_isolation, @@session.tx_isolation;
-- 글로벌 isolation 레벨 변경
SET GLOBAL TRANSACTION ISOLATION LEVEL READ COMMITTED;
-- 세션 isolation 레벨 변경
SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED;
Comments