<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx</link><description>Currently in .Net Framework (v1.0 and v1.1) the support for transactions is offered by System.EnterpriseServices and by the System.Data.IDbTransaction, implemented by one of your favorite data provider (see http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconprocessingtransactions.asp?frame=true</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#192262</link><pubDate>Fri, 23 Jul 2004 08:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:192262</guid><dc:creator>Sorin Dolha (MCSD .NET)</dc:creator><description>Very nice, I've been waiting for it for a long time! Good job!</description></item><item><title>Whidbey and transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#192413</link><pubDate>Fri, 23 Jul 2004 14:30:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:192413</guid><dc:creator>Girish Bharadwaj</dc:creator><description /></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#192443</link><pubDate>Fri, 23 Jul 2004 12:05:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:192443</guid><dc:creator>Kyle Tinsley</dc:creator><description>This is awesome.  Is TransactionScope also the way to handle single database (multi-table) transactions?</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#192506</link><pubDate>Fri, 23 Jul 2004 13:28:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:192506</guid><dc:creator>Krishna</dc:creator><description>I tried out the code, the connection was against single SQL Server database but different tables,  in code flow below, after Child Class 2 has set the TransactionConsistent option to false and calls a method in Child Class 3, if I put the code within a Transaction Scope, I get &amp;quot;Distributed transaction completed. Either enlist this session in a new transaction or the NULL transaction.&amp;quot; if I don't put it in a Transaction Scope, I get &amp;quot;The transaction has already been implicitly or explicitly committed or aborted&amp;quot; If I set the TransactionConsitent bit to true, everything works fine..So how to handle these set of cases? I can send in the actual code in case you need them..&lt;br&gt;&lt;br&gt;//Code flow&lt;br&gt;&lt;br&gt;//Class 1&lt;br&gt;Using (TransactionScope1) &lt;br&gt;{&lt;br&gt;     //Open Connection 1 &lt;br&gt;     //Create Child Class 1&lt;br&gt;}&lt;br&gt;&lt;br&gt;//Child Class 1&lt;br&gt;Using (TransactionScope2)&lt;br&gt;{&lt;br&gt;     //Open Connection 2&lt;br&gt;     //User Code&lt;br&gt;     //Set Transaction Consistent to false&lt;br&gt;     //Create Child Class 2&lt;br&gt;}&lt;br&gt;&lt;br&gt;//Child Class 2&lt;br&gt;{&lt;br&gt;  //No Transaction Scope, just a read operation&lt;br&gt;  //Open Connection &amp;lt;- Exception Thrown as &amp;quot;The transaction has already been implicitly or explicitly committed or aborted&amp;quot;    &lt;br&gt;   &lt;br&gt;}</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#192507</link><pubDate>Fri, 23 Jul 2004 13:32:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:192507</guid><dc:creator>Krishna</dc:creator><description>What about [Autocommit] and [TransactionOption] attributes similar to that of the support we have in EnterpriseServices. I remember seeing similar attributes in a presentation from the PDC on Distributed Transactions using the Light weight Transaction Manager.&lt;br&gt;&lt;br&gt;We are currently using Remoting interception (derived from ContextBound and applied ContextAttributes) for Distributed Transactions without using EnterpriseServices. Since these classes are not documented and might become internal in future releases of the framework we want to move away from this model and use the System.Transaction classes instead, so we were comparing the options available and wanted to know if similar attributes would be made available in the future...basically we are looking for applying the &amp;quot;using TransctionScope&amp;quot; block through attributes and avoid having to write the plumbing code...&lt;br&gt;&lt;br&gt;Thanks ! </description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#192527</link><pubDate>Fri, 23 Jul 2004 13:54:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:192527</guid><dc:creator>Stuart</dc:creator><description>Simple transaction need that I can't figure out how to do it in 1.x *or* with new model:&lt;br&gt;&lt;br&gt;I want transparent transactedness for all my ASP.NET pages. By which I mean, each page request should take place in its own transaction; if page load runs to completion with no exception (or terminates with the implicit ThreadAbortException thrown by Response.End, which is usually success in practice) the transaction is committed; otherwise (any other exception) it's rolled back. I'd also like to be able to access the transaction for rollback by hand, if there's an error condition that I want to handle some other way than by letting the exception propagate out.&lt;br&gt;&lt;br&gt;I thought I could do that with a &amp;lt;%@ Page Transaction=something %&amp;gt; directive, but none of the available values of the Transaction attribute are, well, comprehensible to me at all. I tried a couple of the most likely-sounding candidates and ended up with the site completely screwed, giving an error even after I removed the transaction directive. I didn't try again after that; there are other developers working on the site too.&lt;br&gt;&lt;br&gt;Even with the new transaction stuff described in your blog, I still can't figure out how I would implement this behavior. I can't use 'using' because there's nowhere to place the 'using' block such that its scope covers all of the page lifecycle. I'm sure I'm missing something obvious - like some documentation that makes sense? ;)</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#193656</link><pubDate>Sat, 24 Jul 2004 02:15:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:193656</guid><dc:creator>Florin Lazar [MSFT]</dc:creator><description>TO: Kyle Tinsley&lt;br&gt;Yes, TransactionScope is also good for single-database transactions. In fact, when only one resource manager is used and this resource manager supports promotable transactions, there will be no overhead. </description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#193662</link><pubDate>Sat, 24 Jul 2004 02:34:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:193662</guid><dc:creator>Florin Lazar [MSFT]</dc:creator><description>To: Krishna&lt;br&gt;&lt;br&gt;I have to see the code to give you an answer. You can send it to me by using the &lt;a target="_new" href="http://blogs.msdn.com/florinlazar/contact.aspx"&gt;http://blogs.msdn.com/florinlazar/contact.aspx&lt;/a&gt;&lt;br&gt;&lt;br&gt;One thing that you need to be careful is that it is not recommended to execute any code after you set the consistent flag inside a transaction scope. And in general, if you do set it to false, that means you are in a bad state and you want to abort everything as soon as possible, i.e. don't do any further work as part of that transaction because you know it will abort.</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#193666</link><pubDate>Sat, 24 Jul 2004 02:43:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:193666</guid><dc:creator>Florin Lazar [MSFT]</dc:creator><description>To: Krishna 2nd comment&lt;br&gt;&lt;br&gt;Currently there are no attributes for transactions as part of System.Transactions namespace. They are provided either by EnterpriseServices or will be by &amp;quot;Indigo&amp;quot; (these are the attributes you've seen at PDC). Or you can write your own attributes. Please, make sure to read my disclaimer.</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#193670</link><pubDate>Sat, 24 Jul 2004 02:53:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:193670</guid><dc:creator>Florin Lazar [MSFT]</dc:creator><description>To: Stuart&lt;br&gt;&lt;br&gt;Did you look at ContextUtil.SetAbort()? I believe this is what you are looking for.&lt;br&gt;&lt;br&gt;See more info at &lt;a target="_new" href="http://samples.gotdotnet.com/quickstart/aspplus/doc/mtstransactions.aspx"&gt;http://samples.gotdotnet.com/quickstart/aspplus/doc/mtstransactions.aspx&lt;/a&gt;&lt;br&gt;&lt;br&gt;</description></item><item><title>Using distributed transactions in .Net 1.x without deriving from ServicedComponent</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#194200</link><pubDate>Sat, 24 Jul 2004 11:49:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:194200</guid><dc:creator>Florin Lazar's WebLog</dc:creator><description /></item><item><title>Using distributed transactions in .Net 1.x without deriving from ServicedComponent</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#195198</link><pubDate>Sat, 24 Jul 2004 21:57:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:195198</guid><dc:creator>Florin Lazar's WebLog</dc:creator><description /></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#197084</link><pubDate>Mon, 26 Jul 2004 14:20:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:197084</guid><dc:creator>Krishna</dc:creator><description>Thanks Florin, I have submitted the code in the link provided..the subject is &amp;quot;System.Transactions Sample Code that throws Exception..See note on Blog&amp;quot; let me know if you need more information..&lt;br&gt;&lt;br&gt;how to check the consistency of the transaction?..say a child class has set the transaction scope consistent flag to false..is it possible to check this in the parent class after the call to the child??..&lt;br&gt;&lt;br&gt;on the note on Attributes..is there special attribute that we need to inherit from to make the transaction scopes transparent on a method or a class??&lt;br&gt;&lt;br&gt;Thanks </description></item><item><title>re: using - It's not just for memory management</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#200502</link><pubDate>Thu, 29 Jul 2004 11:21:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:200502</guid><dc:creator>Eric Gunnerson's C# Compendium</dc:creator><description /></item><item><title>System.Transactions in Whidbey</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#252717</link><pubDate>Fri, 05 Nov 2004 09:28:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:252717</guid><dc:creator>Kevin Cunningham's Blog</dc:creator><description /></item><item><title>System.Transactions in Whidbey</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#252985</link><pubDate>Fri, 05 Nov 2004 20:44:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:252985</guid><dc:creator>Kevin Cunningham's Blog</dc:creator><description /></item><item><title>Using distributed transactions in .Net 1.x without deriving from ServicedComponent </title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#346763</link><pubDate>Wed, 05 Jan 2005 10:33:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:346763</guid><dc:creator>xdev</dc:creator><description>Ping Back来自：blog.csdn.net</description></item><item><title>Using distributed transactions in .Net 1.x without deriving from ServicedComponent </title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#390741</link><pubDate>Wed, 09 Mar 2005 18:45:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:390741</guid><dc:creator>coollzh</dc:creator><description>TrackBack From:http://www.cnblogs.com/coollzh/archive/2005/03/09/115813.html</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#467636</link><pubDate>Thu, 15 Sep 2005 18:24:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:467636</guid><dc:creator>Mike</dc:creator><description>Hey All,&lt;br&gt;&lt;br&gt;Using Beta 2 of VS2005 and I'm attempting to use transaction scope in the business layer with no success. Seems to work ok on XP but when we run in a Windows 2003 environment, it fails with access denied.&lt;br&gt;&lt;br&gt;Any ideas?&lt;br&gt;Mike</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#476700</link><pubDate>Tue, 04 Oct 2005 07:21:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:476700</guid><dc:creator>florinlazar</dc:creator><description>To Mike: It's unusual to get an access denied. I don't know of any case when System.Transactions or DTC return &amp;quot;Access Denied&amp;quot;. You should post more details about your scenario.</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#479983</link><pubDate>Wed, 12 Oct 2005 10:55:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:479983</guid><dc:creator>hbzhang</dc:creator><description>When two connections opened in the same transactionscope, it triggers a DTC transaction, not a local transaction, even if two connections point to the same database. I use win2003 and sql2005 with .net 2.0 beta 2.&lt;br&gt;&lt;br&gt;Is this behaviour as designed?&lt;br&gt;&lt;br&gt;Thanks</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#495190</link><pubDate>Mon, 21 Nov 2005 12:25:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:495190</guid><dc:creator>Jesús</dc:creator><description>I have the same trouble than Mike (see post on Thursday, September 15, 2005 11:24 AM) with the System.Transacions.&lt;br&gt;&lt;br&gt;We are migrating code from Windows XP and VS2005 beta 2 to Windows Server 2003 and the VS2005 november release. We have the SQL Server in a different server and we are getting the exception message &amp;quot;The transaction has already been implicitly or explicitly committed or aborted&amp;quot;.&lt;br&gt;&lt;br&gt;The code is like this:&lt;br&gt;&lt;br&gt;using (TransactionScope ts = new TransactionScope())&lt;br&gt;{&lt;br&gt;   TableAdapter1 ta1 = new TableAdapter1();&lt;br&gt;   TableAdapter2 ta2 = new TableAdapter2();&lt;br&gt;   try&lt;br&gt;   {&lt;br&gt;      ta1.Update(dataset);&lt;br&gt;      ta2.Update(dataset);&lt;br&gt;      ts.Complete();&lt;br&gt;      dataset.AcceptChanges();&lt;br&gt;      return true;&lt;br&gt;   }&lt;br&gt;   catch&lt;br&gt;   {&lt;br&gt;      dataset.RejectChanges();&lt;br&gt;   }&lt;br&gt;   finally&lt;br&gt;   {&lt;br&gt;      ts.Dispose();&lt;br&gt;   }&lt;br&gt;}&lt;br&gt;&lt;br&gt;Thanks</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#511604</link><pubDate>Wed, 11 Jan 2006 19:23:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:511604</guid><dc:creator>bogosian</dc:creator><description>for the TransactionScope - already committed/aborted one can read this very&lt;br&gt;useful article:&lt;br&gt;&lt;br&gt;&lt;a rel="nofollow" target="_new" href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=124293&amp;amp;SiteId=1"&gt;http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=124293&amp;amp;SiteId=1&lt;/a&gt;&lt;br&gt;&lt;br&gt;bye, good luck</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#520254</link><pubDate>Tue, 31 Jan 2006 10:17:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:520254</guid><dc:creator>florinlazar</dc:creator><description>To: hbzhang&lt;br/&gt;&lt;br/&gt;The behavior is currently by design. The WebData/ADO team may be able to optimize this in the future if we (me and you) ask them nicely :)</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#520261</link><pubDate>Tue, 31 Jan 2006 10:24:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:520261</guid><dc:creator>florinlazar</dc:creator><description>To: Jes&amp;#250;s&lt;br/&gt;&lt;br/&gt;Shouldn't you put ts.Complete() after dataset.AcceptChanges? I'm not sure what AcceptChanges does, but if is trying to use the current transaction, that might explain why you are getting the exception. </description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#585849</link><pubDate>Fri, 28 Apr 2006 10:29:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:585849</guid><dc:creator>Ashish</dc:creator><description>To : Jesus,

Why are u doing ts.Dispose? You are already using "using".

</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#588071</link><pubDate>Tue, 02 May 2006 05:04:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:588071</guid><dc:creator>BKimball</dc:creator><description>What version of Visual Studio 2005 is needed for the transactional support, or am I just really lost here?

I put in using System.Transactions; (Well tried to, doesn't show up in intellisense) but am unable to access anything in the namespace.

Was this dropped from the final release of VS2K5 or do I need something better than Standard Edition?</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#672248</link><pubDate>Thu, 20 Jul 2006 07:54:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:672248</guid><dc:creator>Sundar Paranthaman</dc:creator><description>I am using TransactionScope object to achieve transaction support across 2 components that could have database interactions. Both components make connections to the database and change data. Even though both components connect to the same database with the same connection string, when the second connection is made the transaction escalates to a Distributed Transaction. Is it possible to change this behavior so that the transaction doesn’t escalate since the connections are to the same database with the same connection string. The main reason I want to prevent transaction escalation is our product has to work in WindowsXPSP2 and DTC service is disabled by default. </description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#750240</link><pubDate>Tue, 12 Sep 2006 09:25:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:750240</guid><dc:creator>David</dc:creator><description>I am geting Transaction aborted Execption, i am using sql Server 2000.
 
using (TransactionScope scope = new TransactionScope()
{
 Store_to_database(int vl,int v2)                     
 scope.Complete();
}

In the Store_to_database function
i am opening a connection to database, inserting the record. but i m geting Execption
"The Transaction has Aborted" on connection.open() statement.
please Help  me.....
 
</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#788294</link><pubDate>Wed, 04 Oct 2006 04:17:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:788294</guid><dc:creator>florinlazar</dc:creator><description>&lt;p&gt;To: Sundar Paranthaman &lt;/p&gt;
&lt;p&gt;I recommend looking at the ConnectionScope class from&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/dataaccess/archive/2006/02/14/532026.aspx"&gt;http://blogs.msdn.com/dataaccess/archive/2006/02/14/532026.aspx&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#1737203</link><pubDate>Wed, 21 Feb 2007 23:40:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1737203</guid><dc:creator>Dan</dc:creator><description>&lt;p&gt;To use TransactionScope what needs to be installed and running on Windows 2000 or Windows 2003 server &amp;amp; SQL 2000?&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#1738565</link><pubDate>Thu, 22 Feb 2007 06:22:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1738565</guid><dc:creator>florinlazar</dc:creator><description>&lt;p&gt;To: Dan&lt;/p&gt;
&lt;p&gt;You need to install .Net Framework 2.0 or higher in order to be able to use System.Transactions.&lt;/p&gt;
</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#1763567</link><pubDate>Mon, 26 Feb 2007 18:14:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1763567</guid><dc:creator>Khurram</dc:creator><description>&lt;p&gt;Hi I am having the same error. In our case the application is on win server 2003 and the sql server on win2k. Do we need to install .NET framework 2 on both servers SQL and Web? &lt;/p&gt;</description></item><item><title>re: Transactions made easy: System.Transactions</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#1775297</link><pubDate>Wed, 28 Feb 2007 22:29:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1775297</guid><dc:creator>florinlazar</dc:creator><description>&lt;p&gt;I recommend posting your issues to &lt;a rel="nofollow" target="_new" href="http://forums.microsoft.com/MSDN/ShowForum.aspx?ForumID=388&amp;amp;SiteID=1"&gt;http://forums.microsoft.com/MSDN/ShowForum.aspx?ForumID=388&amp;amp;SiteID=1&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Lexapro side effects.</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#8752729</link><pubDate>Sat, 19 Jul 2008 04:48:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8752729</guid><dc:creator>Lexapro when does it work.</dc:creator><description>&lt;p&gt;Lexapro. Side effects lexapro.&lt;/p&gt;
</description></item><item><title>Propecia finasteride.</title><link>http://blogs.msdn.com/florinlazar/archive/2004/07/23/transactions-made-easy-system-transactions.aspx#8782467</link><pubDate>Mon, 28 Jul 2008 07:52:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8782467</guid><dc:creator>Propecia side effects bad.</dc:creator><description>&lt;p&gt;Hair loss propecia drug dht. Propecia. Generic propecia. Propecia generic.&lt;/p&gt;
</description></item></channel></rss>