Ken,
Transactions are needed only if you want to coordinate more than one
operations, i.e. if you need all INSERTs, UPDATEs or DELETEs grouped
into a transaction to succeed or fail as a whole.
If you only ever have one database operation -- the UPDATE that you
mention -- then you don't need a transaction. In fact, you shouldn't
start a transaction because it's causing unnecessary overhead.
HTH,
Christoph Schittko
MS MVP XML
http://weblogs.asp.net/cschittko
> -----Original Message-----
> From: Ken [mailto:Ken@discussions.microsoft.com]
[quoted text clipped - 17 lines]
>
> Ken