When deleting a row by its PrimaryKey from a table, I get about 44472 logical reads. Now the table has 5-6 child tables that link their ForeignKeys to the PK of the table I want to delete from.

I'm not sure what to do to improve the performance of the delete.

Any suggestions ?

Edit : I added the queryplan for the delete

http://img384.imageshack.us/img384/6255/deleteexecutionplan.png

Edit : I found a solution (not sure if it's the ideal solution)- it's in the response bellow.

link|improve this question

80% accept rate
That execution plan shows a table scan on OrderDetails, and on two other small tables. Do you have a self-referencing FK on that table, and is the FK in that case on a non-indexed column? If you share the schema for the table and the related tables along with the actual execution plan (in .xml format) it will be easier to say exactly what is the cause... – KristoferA - Huagati.com Oct 15 '09 at 10:49
feedback

3 Answers

Look at the query plan for the single row delete.

I think you will find that a table scan is being done on one or more of the "child" tables. If so consider putting an index on the ForeignKey in on that child table(s).

(Otherwise please add the query plan to your question)

link|improve this answer
feedback

Do you have FK constraints?

The options I can think of are

  • Add indexes to the FK columns in the child tables.
  • Remove the constraint (which would risk having orphaned rows).
  • Try reducing the number of child tables.
link|improve this answer
feedback
up vote 0 down vote accepted

This answer solved the problem, now deletes work like a charm. I'm not sure if there are any downsides I should be aware of.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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