Server failed to resume the transaction, desc: 3400000003. with asp.Net

Hi,

I am developing a Web site with Asp.Net 3.5 and SQL Server 2005 and also using LINQ. I have been Migrated my database from SQL server 2000 to SQL Server 2005.
I am getting below error randomly :
Server failed to resume the transaction, desc: 3400000003.

Can you please provide me any solution for this


Posted Answers

A:

Hi,

I had this problem too, after migrating an application from sql server 2000 to sql server 2005. I am working with .Net 2005, Framework 2.0 .

I fixed it by changing the code that caused the error. I had a single Connection executing two commands (procedures) on the same method. I was only closing the Connection after the second command, and it didn't cause problems in sql 2000. But for some reason it caused this error on 2005:

The server failed to resume the transaction. (...)

I only created another connection, and each connection executes now only one command. Worked for me.

Hope it helps,

Best regards,

Edu


Answer by elifeinchrist