행위

데이터 동시성 및 일관성

DB CAFE

thumb_up 추천메뉴 바로가기


데이터 동시성 및 일관성

https://docs.oracle.com/database/121/CNCPT/consist.htm#CNCPT020



  1. 오라클은 update문 수행 시 대상 레코드를 읽을 때는 Consistent 모드로 읽고 실제 값을 변경할 때는 Current 모드로 읽는다.
  2. select문은 Consistent 모드로 읽고, insert, update, delete, merge는 Current 모드로 읽고 쓴다.
  3. 다만, 갱신할 대상 레코드를 식별하는 작업은 Consistent 모드로 이루어진다.


1 데이터 동시성 및 일관성 소개[편집]

2 Oracle Database Transaction Isolation Level 개요[편집]

3 Oracle Database Locking Mechanism 개요[편집]

4 자동 잠금 개요[편집]

5 수동 데이터 잠금 개요[편집]

6 사용자 정의 잠금 개요[편집]