Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 우선순위
- 기아 상태
- 스케줄링
- 알고리즘
- 스레드
- 가상 메모리
- mips
- 프로세스
- 페이지 부재율
- PYTHON
- 컴퓨터구조
- 운영체제
- 트랩
- 단편화
- 백준
- 페이지 대치
- ALU
- 동기화
- 추상화
- Oracle
- 인터럽트
- concurrency
- BOJ
- 교착상태
- mutex
- 페이징
- 세마포어
- Algorithm
- 부동소수점
- fork()
Archives
- Today
- Total
목록index-locking protocol (1)
봉황대 in CS
[Concurrency Control] Index-locking Protocol: The Way to Prevent Phantom Reads
* 본 글은 'Database System Concepts - 7th Edition(데이터베이스 시스템 7판)'을 바탕으로 작성하였습니다. What is phantom read ?i.e., Phantom phenomenon 이미 전 포스팅에서 다룬 개념이지만, 다시 명확하게 하는 겸 작성한다.https://eunajung01.tistory.com/166 두 개의 transaction, T_1과 T_2가 있다고 하자. 둘은 각각 다음과 같은 SQL을 실행한다.# T_1insert into instructor values(11111, 'Feynman', 'Physics', 94000);# T_2select count(*)from instructorwhere dept_name='Physics';T_2는 in..
Database
2024. 8. 12. 22:02