I faced with issues when in VS 2010 I ‘ve got timeout exception, but in MS SQL Server it executes normally.
The request is sproc that contains select statement with several joins.
What reason, do you have any clues?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This happend to me once when I forgot to close the connection properly in one new routine that was called a lot.
When max connections was hit on the server, the program got timeout. But of course I could run the query in the query window that allready had a valid connection. Took a while to figure out..
Check activity monitor to see if you have a lots of connections from your client linger around, and if so, check that you close all connections properly.