vote up 6 vote down star
1

I'm writing a pretty straightforward e-commerce app in asp.net, do i need to use transactions in my stored procedures?

Read/Write ratio is about 9:1

flag

5 Answers

vote up 7 vote down check

Many people ask - do I need transactions? Why do I need them? When to use them?

The answer is simple: use them all the time, unless you have a very good reason not to (for instance, don't use atomic transactions for "long running activities" between businesses). The default should always be yes. You are in doubt? - use transactions.

Why are transactions beneficial? They help you deal with crashes, failures, data consistency, error handling, they help you write simpler code etc. And the list of benefits will continue to grow with time.

Here is some more info from http://blogs.msdn.com/florinlazar/

link|flag
1  
"use them all the time, unless you have a very good reason not to" this is like telling people to wear helmets all the time, unless they have a good reason not to. – Jeff Atwood Sep 13 '08 at 9:10
That is assuming that using transactions is annoying or ridiculous in any way, which I don't think is the case. – Vinko Vrsalovic Sep 13 '08 at 9:23
I think @Jeff Atwood did not read the full para before coming to the conclusion of donning helmets. – Codeslayer Sep 13 '08 at 9:37
"I usually don't fall over when walking" is a very good and sensible reason not to wear a helmet. "I use a ORM that handles optimistic locking for my long running business activities" is a very good and sensible reason not to use (long living) transactions. "I don't know" isn' a good reason. – David Schmitt Sep 13 '08 at 10:08
@David I believe Codeslayer's main message is saying start with the assumption you need them, and look for reasons not to use them. What are those reasons? Florin shows some. If you don't know what your code is behaving like, you have worse problems than the usage or not of transactions – Vinko Vrsalovic Sep 13 '08 at 13:02
vote up 1 vote down

The answer is, it depends. You do not always need transaction safety. Sometimes it's overkill. Sometimes it's not.

I can see that, for example, when you implement a checkout process you only want to finalize it once you gathered all data, etc.. Think about a payment f'up, you can rollback - that's an example when you need a transaction. Or maybe when it's wise to use them.

Do you need a transaction when you create a new user account? Maybe, if it's across 10 tables (for whatever reason), if it's just a single table then probably not.

It also depends on what you sold your client on and who they are, and if they requested it, etc.. But if making a decision is up to you, then I'd say, choose wisely.

My bottom line is, avoid premature optimization. Build your application, keep in mind that you may want to go back and refactor/optimize later when you need it. Look at a couple opensource projects and see how they implemented different parts of their app, learn from that. You'll see that most of them don't use transactions at all, yet there are huge online stores that use them.

link|flag
vote up 1 vote down

Of course, it depends.

It depends upon the work that the particular stored procedure performs and, perhaps, not so much the "read/write ratio" that you suggest. In general, you should consider enclosing a unit of work within a transaction if it is query that could be impacted by some other, simultaneously running query. If this sounds nondeterministic, it is. It is often difficult to predict under what circumstances a particular unit of work qualifies as a candidate for this.

A good place to start is to review the precise CRUD being performed within the unit of work, in this case within your stored procedure, and decide if it a) could be affected by some other, simultaneous operation and b) if that other work matters to the end result of this work being performed (or, even, vice versa). If the answer is "Yes" to both of these then consider wrapping the unit of work within a transaction.

What this is suggesting is that you can't always simply decide to either use or not use transactions, rather you should apply them when it makes sense. Use the properties defined by ACID (Atomicity, Consistency, Isolation, and Durability) to help decide when this might be the case.

One other thing to consider is that in some circumstances, particularly if the system must perform many operations in quick succession, e.g., a high-volume transaction processing application, you might need to weigh the relative performance cost of the transaction. Depending upon the size of the unit of work, a commit (or rollback) of a transaction can be resource expensive, perhaps negatively impacting the performance of your system unnecessarily or, at least, with limited benefit.

Unfortunately, this is not an easy question to precisely answer: "It depends."

link|flag
vote up 3 vote down

Remember in SQL Server all single statement CRUD operations are in an implicit transaction by default. You just need to turn on explict transactions (BEGIN TRAN) if you need to make multiple statements act as an atomic unit.

link|flag
vote up 0 vote down

Use them if:

  1. There are some errors that you may want to test for and catch which won't be caught except by you going out and doing the work (looking things up, testing values, etc.), usually from within a transaction so that you can roll back the whole operation.
  2. There are multi-step operations of any sort, which should, logically, be rolled back as a group if they fail.
link|flag

Your Answer

Get an OpenID
or

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