By tag: Transactions
0
kicks
Haacked: Simpler Transactions
"My idea was to write a method that accepts an Action which contains the code you wish to run within the transaction. "
0
kicks
SQL Server 2005: Get full information about transaction locks
Get information about what locks are being held by the transaction, what SPID owns the transaction, on which objects the locks are being held, what SQL statement caused the locks, etc...
0
kicks
Multiple Active Result Sets (MARS) – Transactions and Debugging
A follow up on my previous post about MARS.
Here i explain how transactions in MARS work and how to troubleshoot problems that arise.
0
kicks
Biggest difference between Temp tables and Table variables in Sql Serv
One of the most important differences between Temp tables and Table variables is how they behave in transactions. See how.
0
kicks
How to enlist ADO commands into an NHibernate transa
Overview of how to enlist ADO command objects into an active NHibernate transaction.
0
kicks
Transactions made easy with .NET 2.0
One of the more significant improvement in .NET 2.0 is in the area of transactions. Now with a single line it becomes extremely easy to support transactional code blocks using the concept of "ambient" transaction thanks to TransactionScope in the System.Transactions namespace.