문제

Is there an equivalent setting for IBM DB2 9.7 as there is for SQL Server 2008? The parameter is READ_COMMITTED_SNAPSHOT which can be set to ON and apparently affects locking.

도움이 되었습니까?

해결책

Somewhat equivalent would be to set the database configuration parameter CUR_COMMIT ("currently committed") to ON, however, this does not eliminate locks completely. It does eliminate lock waits though, as queries, instead of waiting on exclusive locks, will fetch previously committed versions of the locked rows.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top