Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 Timeout expired Error

Author  Topic 

suhasckanade
Starting Member

8 Posts

Posted - 2008-07-18 : 08:05:18
Hello Guys,
We are experiencing following SQL error frequently on production server 2000 but we are unable to reproduce it on testing server.

"Timeout expired. The timeout period elapsed prior to
completion of the operation or the server is not responding."
0 " .Net SQL Client Data Provider ConnectionRead (WrapperRead())."


As there are no additional information in the Errors collection, we are stuck here what will be the probable reasons for occurrence of error. We have searched on net also but not found any satisfactory reasons.

Pls help us by providing probable solutions to this problem.
Thanks in advance.

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-07-18 : 08:12:09
Is Services packs and patches applied to server is in top notch?
Go to Top of Page

suhasckanade
Starting Member

8 Posts

Posted - 2008-07-18 : 08:24:32
quote:
Originally posted by sodeep

Is Services packs and patches applied to server is in top notch?



Service Pack is 4
dbnmpntw.dll version no -2000.80.194.0
Go to Top of Page

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-07-18 : 08:46:30
Check this out:
http://forums.asp.net/p/903456/992979.aspx

or google out the error.
Go to Top of Page

suhasckanade
Starting Member

8 Posts

Posted - 2008-07-18 : 08:56:27
quote:
Originally posted by sodeep

Check this out:
http://forums.asp.net/p/903456/992979.aspx

or google out the error.



I al'ready search a lot on google but did'nt find the solution so far......
Go to Top of Page

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-07-18 : 08:59:58
Check this:

http://www.devnewsgroups.net/group/microsoft.public.dotnet.framework.adonet/topic11857.aspx

Or you need to call Microsoft.
Go to Top of Page

rmiao
Master Smack Fu Yak Hacker

7266 Posts

Posted - 2008-07-19 : 00:02:44
Did you see network problem between sql server and app machine?
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2008-07-19 : 01:55:32
To troubleshoot this error, you should be running SQL Profiler and Performance Monitor. You will see long durations in SQL Profiler if you are receiving timeouts. Look for anything over the timeout value set in the application, which is typically 30 seconds. Once you've located the code, see if you can make any improvements via indexes, rewriting the query, or redesigning the tables. Also look in Performance Monitor for hardware bottlenecks which might be slowing your queries down. I'd start with CPU and memory checks.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2008-07-19 : 01:57:25
Also, do not just increase your timeout value to make the error go away. You should exhaust all possible avenues to make this more efficient before you decide to increase the value.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page
   

- Advertisement -