The information in this article applies to:
BUG #: 53474 (SQLBUG_70) SYMPTOMSFailure to prepare a statement, either by means of ODBC or OLE DB, incorrectly results in the failure of the entire transaction. Potential causes for such a failure include syntax errors or incorrect object names in the statement. Subsequent operations that depend on the transaction being active, including attempts to commit the transaction, will fail. CAUSESQL Server incorrectly closes the whole transaction after any error, rather than stopping execution of the statement only. WORKAROUNDTo work around this problem, execute the statement without first preparing it, using SQLExecDirect or ICommandText::Execute. An error during either of these operations will cause only the statement, rather than the whole the transaction, not to be processed. The application can then determine the appropriate response, such as ignoring the error and continuing with other statements, resubmitting the query without the problem, or rolling back the transaction. STATUSMicrosoft has confirmed this to be a problem in SQL Server
version 7.0. This problem has been corrected in U.S. Service Pack 1
for Microsoft SQL Server version 7.0. For information about
downloading and installing the latest SQL Server Service Pack, see
http://support.microsoft.com/support/sql/.
MORE INFORMATION
Attempts to commit or roll back the transaction after it has been
prematurely closed may result in the following errors:
You may also encounter other errors that are not obviously related. For example, non-static cursors are closed when a transaction is rolled back; thus, if the application had previously opened such a cursor as part of this transaction, it will be closed, and attempts to fetch from or close this cursor would result in various errors indicating that the cursor is not open. Additional query words:
@@trancount xact abort sp_prepare rollback terminate aborts terminates
Keywords : SSrvGen SSrvProg SSrvTran_SQL kbbug7.00 kbSQLServ700bug |
Last Reviewed: November 17, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |