Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My application keeps running into Timeout Expired SqlExceptions. The thing is that this query is one that will simply have to run for a decent amount of time. I'm having trouble figuring out where this exception is occurring though. Is this a timeout that's created at the database server or is it happening in my program? Or if it could be both, how do I figure out which one it is?

And lastly, how do I extend the timeout period?

share|improve this question

3 Answers

up vote 9 down vote accepted

It is likely that you are running over the CommandTimeout set on your DataContext. This defaults to 30 seconds.

All you need to do is set the property on the DataContext before you execute your query.

share|improve this answer

increase timeout = BAD
fix query = GOOD

I'm not sure of all the details involved, but in general the followng applies:

when a query runs slow do the following in management studio:

  • run SET ShowPlan_All ON
  • run your query
  • look at the output for the word "scan". your problem is there.

"Scan" = touch each row (table or index). Would you like to "scan" a phone book looking for one number or use the index?

share|improve this answer
We've tuned the query about as much as we can. Unfortunately, there's only so much you can do to speed up the process of pulling 15k records out of a table of 2 million records through a linked server. – Jason Baker May 8 '09 at 16:56
edit your question and include the output from SET ShowPlan_All ON – KM. May 8 '09 at 17:14
1  
@Jason Baker, I have many queries that join on multiple tables with more rows than your 2 million, and they run a lot faster than 30 seconds. You say "We've tuned the query about as much as we can", and that is why I was offering my help. – KM. May 11 '09 at 13:16

This is probally occuring becuase the default timeout is 30 seconds. You can change this by setting a Timeout attribute on the connection string. Alternatley you can set this on the DataContext.

Here's an article on code project about this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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