Working with Snapshot Isolation

SQL Server 2005 introduces a new "snapshot" isolation level that is intended to enhance concurrency for online transaction processing (OLTP) applications. In prior versions of SQL Server, concurrency was based solely on locking, which can cause blocking and deadlocking problems for some applications. Snapshot isolation depends on enhancements to row versioning and is intended to improve performance by avoiding reader-writer blocking scenarios.

Transactions that start under snapshot isolation read a database snapshot as of the time when the transaction starts. One result of this is that keyset, dynamic and static server cursors, when opened within a snapshot transaction context, behave much like static cursors opened within serializable transactions. However, when the cursors are opened under the snapshot isolation level locks are not taken, which can reduce blocking on the server.

For more information about SQL Server's support for snapshot isolation, see 행 버전 관리 기반 격리 수준 이해.

SQL Native Client OLE DB Provider

The SQL Native Client OLE DB provider has enhancements that take advantage of snapshot isolation in SQL Server 2005. These enhancements include changes to the DBPROPSET_DATASOURCEINFO and DBPROPSET_SESSION property sets.

DBPROPSET_DATASOURCEINFO

The DBPROPSET_DATASOURCEINFO property set has been changed to indicate that the snapshot isolation level is supported by the addition of the DBPROPVAL_TI_SNAPSHOT value that is used in the DBPROP_SUPPORTEDTXNISOLEVELS property. This new value indicates that the snapshot isolation level is supported whether or not versioning has been enabled on the database. The following is a list of the DBPROP_SUPPORTEDTXNISOLEVELS values:

Property ID Description

DBPROP_SUPPORTEDTXNISOLEVELS

Type: VT_I4

R/W: Read only

Description: A bitmask specifying the supported transaction isolation levels. A combination of zero or more of the following:

  • DBPROPVAL_TI_CHAOS
  • DBPROPVAL_TI_READUNCOMMITTED
  • DBPROPVAL_TI_BROWSE
  • DBPROPVAL_TI_CURSORSTABILITY
  • DBPROPVAL_TI_READCOMMITTED
  • DBPROPVAL_TI_REPEATABLEREAD
  • DBPROPVAL_TI_SERIALIZABLE
  • DBPROPVAL_TI_ISOLATED
  • DBPROPVAL_TI_SNAPSHOT

DBPROPSET_SESSION

The DBPROPSET_SESSION property set has been changed to indicate that the snapshot isolation level is supported by the addition of the DBPROPVAL_TI_SNAPSHOT value that is used in the DBPROP_SESS_AUTOCOMMITISOLEVELS property. This new value indicates that the snapshot isolation level is supported whether or not versioning has been enabled on the database. The following is a list of the DBPROP_SESS_AUTOCOMMITISOLEVELS values:

Property ID Description

DBPROP_SESS_AUTOCOMMITISOLEVELS

Type: VT_I4

R/W: Read only

Description: Specifies a bitmask that indicates the transaction isolation level while in auto-commit mode. The values that can be set in this bitmask are the same as those that can be set for DBPROP_SUPPORTEDTXNISOLEVELS.

[!참고] The errors DB_S_ERRORSOCCURRED or DB_E_ERRORSOCCURRED will occur if DBPROPVAL_TI_SNAPSHOT is set when using versions of SQL Server earlier than SQL Server 2005.

For information about how snapshot isolation is supported in transactions, see Supporting Local Transactions.

SQL Native Client ODBC Driver

The SQL Native Client ODBC driver provides support for snapshot isolation though enhancements made to the SQLSetConnectAttr and SQLGetInfo functions.

SQLSetConnectAttr

The SQLSetConnectAttr function now supports the use of the SQL_COPT_SS_TXN_ISOLATION attribute. Setting SQL_COPT_SS_TXN_ISOLATION to SQL_TXN_SS_SNAPSHOT indicates that the transaction will take place under the snapshot isolation level.

SQLGetInfo

The SQLGetInfo function now supports the SQL_TXN_SS_SNAPSHOT value that has been added to the SQL_TXN_ISOLATION_OPTION info type.

For information about how snapshot isolation is supported in transactions, see Cursor Transaction Isolation Level.

참고 항목

개념

Rowset Properties and Behaviors

관련 자료

Features of SQL Native Client
데이터베이스 엔진의 격리 수준
데이터베이스 엔진에서의 잠금

도움말 및 정보

SQL Server 2005 지원 받기