FIX: JDBC Driver Does Not Duplicate the Transaction Isolation Level in Cloned Connection (821192)
The information in this article applies to:
- Microsoft SQL Server 2000 Driver for JDBC
SYMPTOMSWhen the Microsoft SQL Server 2000 Driver for JDBC internally opens a cloned connection, it does not copy the transaction isolation level from the original connection to the cloned connection. This can cause unintended locks on the Database objects. This behavior may cause other SQL Server applications to block.CAUSEWhen the JDBC Driver opens a connection, the SelectMethod property is set to Direct (the default setting), and by design, no server cursors are used. Therefore, to manage multiple statements, the driver has to internally open extra connections that are named cloned connections. These cloned connections should have the same properties that are set on the original connection that is opened by the application. However, any transaction isolation level that is set on the original connection is not set on the cloned connection because of a bug in the driver. This causes the cloned connections to use the default isolation level setting (READ COMMITTED).RESOLUTION
A supported hotfix is now available from Microsoft, but it is only intended to correct the problem that is described in this article. Only apply it to systems that are experiencing this specific problem. This hotfix may receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next service pack that contains this hotfix.
To resolve this problem immediately, contact Microsoft Product Support Services to obtain the fix. For a complete list of Microsoft Product Support Services phone numbers and information about support costs, visit the following Microsoft Web site:
Note In special cases, charges that are ordinarily incurred for support calls may be canceled if a Microsoft Support Professional determines that a specific update will resolve your problem. The usual support costs will apply to additional support questions and issues that do not qualify for the specific update in question.
The English version of this fix has the file attributes (or later) that are listed in the following table. The dates and times for these files are listed in coordinated universal time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time tool in Control Panel.
The Windows version of this fix has the following properties:
Date Time Version Size File name
--------------------------------------------------------------
08-May-2003 20:44 2.2.0035 286,790 Msbase.jar
08-May-2003 20:44 2.2.0035 67,159 Mssqlserver.jar
08-May-2003 20:44 2.2.0035 58,903 Msutil.jar
The Unix-based version of this fix has the following properties:
Date Time Version Size File name
--------------------------------------------------------------
07-May-2003 18:30 2.2.0035 286,790 Msbase.jar
07-May-2003 18:30 2.2.0035 67,159 Mssqlserver.jar
07-May-2003 18:30 2.2.0035 58,903 Msutil.jar
Note Although the file timestamp may be different for each operating system that is listed, internally the files are exactly the same. The best way to determine the version of the driver that you are using is to use the getDriverVersion method of the DatabaseMetaData interface. WORKAROUNDBecause the driver opens cloned connections only when the SelectMethod property is set to Direct, use server cursors instead by setting the SelectMethod property to Cursor.
If you cannot use the Cursor method for some reason, you might be able to work around this bug by using locking hints in queries. For example, if you must use the READ UNCOMMITTED ioslation level, append the locking hint "WITH (NOLOCK)" to your queries. This causes the cloned connection to behave as if the isolation level were set to READ UNCOMMITTED. Because you cannot use this workaround for all the isolation levels, Microsoft reccommends that you use the first workaround (set the SelectMethod property to Cursor). STATUS Microsoft
has confirmed that this is a problem in the Microsoft products that are listed
at the beginning of this article.
Modification Type: | Minor | Last Reviewed: | 10/25/2005 |
---|
Keywords: | kbHotfixServer kbQFE kbQFE KB821192 kbAudDeveloper |
---|
|