Error message when you implement a nested transaction with the OLE DB Provider for SQL Server: "Could not start a transaction for OLE DB provider" (306649)
The information in this article applies to:
- Microsoft SQL Server 2000 (all editions)
- Microsoft SQL Server 7.0
- Microsoft Data Access Components 2.6
- Microsoft Data Access Components 2.6 SP1
This article was previously published under Q306649 SYMPTOMS
Microsoft OLE DB Provider for SQL Server does not support nested transactions, and the following error message is returned:
Could not start a transaction for OLE DB provider '%ls'.
Microsoft SQL Server also returns the following error message if the provider is a SQL Server-specific provider:
Server: Msg 7392, Level 16, State 2,
Could not start a transaction for OLE DB provider 'SQLOLEDB'. [OLE/DB provider returned message: Only one transaction can be active on this session.]
CAUSE
This error indicates that a data modification statement is being attempted against an OLE DB provider when the connection is in an explicit or implicit transaction, and the OLE DB Provider does not support nested transactions. SQL Server requires this support so that, on certain error conditions, it can terminate the effects of the data modification statement while continuing with the transaction.
RESOLUTION
To work around this problem, set XACT_ABORT to ON before the transaction. This causes SQL Server to terminate the surrounding transaction when an error occurs while processing the data modification statement. If SET XACT_ABORT is ON, SQL Server does not require nested transaction support from the OLE DB Provider.
STATUS
This behavior is by design.
REFERENCESFor additional information, click the article numbers below
to view the articles in the Microsoft Knowledge Base:
177138 INFO: Nested Transactions Not Available in ODBC/OLE DB/ADO
187289 HOWTO: Implement Nested Transactions with Oracle
Modification Type: | Major | Last Reviewed: | 12/9/2005 |
---|
Keywords: | kbprb KB306649 kbAudITPRO kbAudDeveloper |
---|
|