I have an Access 2003 front-end with SQL 2005 back-end. Occasionally, users get the error below and the front-end crashes. Any pointers as to how I can resolve this?

[ODBC SQL Server Driver] Communication link failure

link|improve this question

Have you been through the steps in say: social.msdn.microsoft.com/forums/en-US/sqldataaccess/thread/… ? – Remou Feb 17 '11 at 19:34
1  
Have a look at the DNS configuration. Misconfigured workstations can cause no end of mysterious problems like this. The usual problem is that an Internet DNS is being queried before the local one. You want the local DNS to be the primary (and, perhaps, only DNS), and let your local DNS pass on queries to the Intenret for everything that's not local. I've seen this fix such errors in more than one instance. – David-W-Fenton Feb 18 '11 at 2:52
1  
Agree with David. At one of the places I worked our server took so long to respond to DNS queries that our workstations would use the secondary DNS server, which was off our network, to try to find local workstations. Of course, it didn't work. – HK1 Feb 24 '11 at 5:02
I've changed my links to use ip addresses, so that's not it for me. There appears to be a cached connection, that once it gets into a bad state, it stays there permanently. – tbone Feb 16 at 20:29
feedback

2 Answers

Agree with the above comments the problems seems to be that the client loses cnectivity to the server. if you are using a hostname for the server I would reccomend to use an IP cos if it is purely a dns problem that will solve it if that dosent work then it is a problem on the network like package losses or server overload problems or something in that direction

link|improve this answer
feedback

From the googling and reading I have done on this topic, it seems to me that this might simply be a bug in MS Access that they've never bothered to fix, ie: there is no resolution.

The symptoms I am seeing and that others seem to have is that the connection Access has to SQL Server becomes "bad", and once it reaches this state, nothing will fix it except restarting Access, period. Although it blows a person's mind, this is entirely possible - if the code related to connection management (either in MS Access itself, or within the ODBC provider) doesn't check validity of the connection state and always assumes it is fine, then we would see exactly the symptoms we are seeing.

You'd think, surely Microsoft would fix this, but it wouldn't be the first time.

Update

I'm seeing the same behavior when using a Microsoft Access Project (*.adp) so the problem appears to be within MS Access itself (as opposed to just ODBC).

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.