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
- DATABASELINK
- 대량dml튜닝
- datadir 변경
- 티스토리챌린지
- 리눅스
- public synonym EXPDP
- Connect Storage Engine
- 통계정보복구
- inlist
- MariaDB기본디렉토리변경
- sqlp합격후기
- 실제플랜조회
- 오라클기동
- ssh접속오류
- PROFILE EXPDP
- oracle
- autocommit설정
- 통계정보백업
- 오라클
- num_index_keys
- mariaDB
- Linux
- job관리
- sqlp시험일정
- mariaDB설치오류
- postgreql 오브젝트 조회
- 오라클인덱스힌트
- 오블완
- 데이터csv생성
- sqlp공부방법
Archives
- Today
- Total
목록autocommit설정 (1)
IT study
[MySQL] AutoCommit 설정 값 조회 및 변경
1. AutoCommit 설정값 조회 1) select @@autocommit; --1:true, 0:false 2) show variables like 'autocommit'; 2. AutoCommit 설정값 변경 1) 세션단위 변경 : set autocommit = false / true; 2) DB레벨 변경 : /etc/my.cnf.d/server.cnf > autocommit 값 변경 - 0:autocommit 해제 , 1 : autocommit 설정 mysql> select @@autocommit;+--------------+| @@autocommit |+--------------+| 1 |+--------------+1 row in set (0.00 sec)mysql> ..
DATABASE/Mysql MariaDB
2025. 3. 14. 17:13