I'm trying to access data from two different databases inside a transactionscope. But while executing any query on the second database , i get "The operation is not valid for the state of the transaction." error

using(TransactionScope scope=new TransactionScope())
{
     Insert();//Inserts to database A
     Select();//Selects from database B - error while executing this statement
}

Both the databases exist in the same server.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

On SQL Server 2005, I think that will require a DTC (Distributed Transaction Coordinator) to be active on all machines. The 2 different connections will cause the Transaction to be Promoted from Local to Distributed.

Apparently, that is fixed on SQL Server 2008: TransactionScope automatically escalating to MSDTC on some machines? Which version of SQL Server are you using?

see A ConnectionScope class

Common Gotchas when using TransactionScope and MS DTC

link|improve this answer
Sqlserver 2005.. – Jose Dec 7 '10 at 8:26
That will be the root of the problem... – Mitch Wheat Dec 7 '10 at 8:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.