PPAS (PostgreSQL Advanced Server)에서select - update 또는 select - delete 하는 경우 아래와 같이 트랜젝션이 겹칠 수 있다 보통 MySQL 등에선 Isolation Level 을 Serializable 로 설정 후 Select 한 대상을 Update 해서우의 상황을 해결하는데PPAS 에서 위와 같이 Transaction 을 처리하는 경우could not serialize access due to concurrent update예외가 발생할 수 있다. 보통 MySQL 등에서는 Serializable 상태에서 Select 하면 해당 테이블에 잠금이 생기지만PPAS 에서는 Update 하면서 잠기기 때문인데,1) Update 한게 다른 쓰레드(진입)에서 Sel..