개발놀이터
2023-03-06 영어공부 본문
consecutive : 연속적인 / 일관된
substitute : 대신쓰다, 대체하다 / 바꾸다
in terms of : ~인 측면에서
negate : 부정하다 / 취소하다
abort : 유산(낙태)하다 / 중단하다
rigorous : 엄격한 / 혹독한
mature : 성숙한 / 잘 익은 / 완전히 발달한
ephemeral : 명이 짧은 / 덧없는
recursive : 순환의
stand out : 두드러지다
integrity : 고결 / 성실 / 청렴 -> 컴퓨터사이언스에선 데이터 무결성과 같이 사용
duration : 지속 / 계속
conversion : 전환 / 변환
numerous : 다수의, 수많은
This level is different from Read Committed in that a query in a repeatable read transaction sees a snapshot as of the start of the first non-transaction-control statement in the transaction, not as of the start of the current statement within the transaction.
이 레벨은 Read Committed 와 다르게 Repeatable Read 트랜잭션 안의 쿼리가 트랜잭션 안에서 트랜잭션이 컨트롤하지 않는 처음 상태의 시작으로서 스냅샷을 보여준다. 트랜잭션 안에서 동시다발적인 상태의 시작이 아니고
-> 이 레벨은 동시다발적인 상태의 시작이 아니고 트랜잭션이 컨트롤 하지 않은 최초의 시점을 스냅샷으로 보여준다.
If the first updater rolls back, then its effects are negated and the repeatable read transaction can proceed with updating the originally found row. But if the first updater commits (and actually updated or deleted the row, not just locked it) then the repeatable read transaction will be rolled back with the message
만약 첫번째 업데이트 하는 트랜잭션이 롤백을 한다면 롤백의 효과를 무효화한다. 그리고 Repeatable Read 트랜잭션은 오리지널 행을 찾고 업데이트를 진행할 수 있다. 그러나 만약 첫번째로 업데이트하는 트랜잭션이 커밋을 한다면 (그리고 단지 그 행을 잠그는 것이 아니라 실제로 행을 업데이트하거나 삭제되는 경우) 그러면 Repeatable Read 트랜잭션은 그 메세지들을 롤백하게 될 것이다.
All locks acquired by statements within a transaction are held for the duration of the transaction, preventing destructive interference including dirty reads, lost updates, and destructive DDL operations from concurrent transactions.
모든 락은 트랜잭션의 지속동안 동시성문제인 Dirty Read, Lost Update, 그리고 DDL 실행에의한 해를 끼치는 문제를 보호하는 상태를 획득합니다.
'기타 > 영어공부' 카테고리의 다른 글
2023-03-11 영어공부 (0) | 2023.03.11 |
---|---|
2023-03-09 영어공부 (0) | 2023.03.11 |
2023-03-04 영어공부 (0) | 2023.03.04 |
2023-03-02 영어공부 (0) | 2023.03.02 |
2023-02-27 영어공부 (0) | 2023.02.27 |