473,398 Members | 2,812 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

[ConnectionOpen (Connect()).]SQL Server does not exist or access denied.

Moved from Windows 2000 to Window 2003, and now receive this error
sporradically. It only happens a couple times per day, so the
connection string is fine.

This issue seems to be server related, becuase all the same code and
database ran fine on Windows 2000.

Nov 9 '05 #1
9 5993
alorentz wrote:
Moved from Windows 2000 to Window 2003, and now receive this error
sporradically. It only happens a couple times per day, so the
connection string is fine.

This issue seems to be server related, becuase all the same code and
database ran fine on Windows 2000.


We probably won't be able to help you here. This sounds like a network
issue. You could try the sqlserver.server or sqlserver.connect newsgroups,
or have a look at http://support.microsoft.com/kb/328306/, but I doubt they
will be able to help based on the sporadicness of your symptoms. You will
probably need to get MS Product Support involved.

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Nov 9 '05 #2
I guess so...that seems to be the link that everyone posts, but doesn't
solve the issue. It'll be like striking oil in Jersey when this one
gets solved!

Thanks.
Bob Barrows [MVP] wrote:
alorentz wrote:
Moved from Windows 2000 to Window 2003, and now receive this error
sporradically. It only happens a couple times per day, so the
connection string is fine.

This issue seems to be server related, becuase all the same code and
database ran fine on Windows 2000.


We probably won't be able to help you here. This sounds like a network
issue. You could try the sqlserver.server or sqlserver.connect newsgroups,
or have a look at http://support.microsoft.com/kb/328306/, but I doubt they
will be able to help based on the sporadicness of your symptoms. You will
probably need to get MS Product Support involved.

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


Nov 9 '05 #3
"alorentz" <al*******@msn.com> wrote in message
news:11*********************@g47g2000cwa.googlegro ups.com...
:I guess so...that seems to be the link that everyone posts, but doesn't
: solve the issue. It'll be like striking oil in Jersey when this one
: gets solved!

A sniffer will tell you if it's a network issue as long as you don't mind
working at the packet level. If you're using a Cisco switch in between the
two you can easily get error information in the logs. You can get connect
failures which may be attributed to retries because of a NIC not liking full
duplex or failing. This can also be a port on the switch. Or you may have
saturated the backplane. The quick remedy is to modify your network
settings to half duplex to test or try another port. The long fix is to
bump up the capacity of your backplane. This is also called the $$ fix.

This is seen a lot when the whole network is running full duplex so it's
intermittent based on network load. Check the times it happens, if they're
somewhat regular like in the morning and right after lunch the it points to
a capacity issue. That may save a little time troubleshooting it.

HTH...

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Nov 10 '05 #4
Based on some research, it seems people say if you install Windows 2003
SP1, it should fix the problem...because this is MS bug.

Nov 10 '05 #5
"alorentz" wrote in message
news:11*********************@g47g2000cwa.googlegro ups.com...
: Based on some research, it seems people say if you install Windows 2003
: SP1, it should fix the problem...because this is MS bug.

Keeping your system up to date is generally a given.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Nov 22 '05 #6
Search no further....

http://support.microsoft.com/default...b;en-us;328476

Note, this answer took forever to find so I'm posting everywhere...

Nov 22 '05 #7
>>Keeping your system up to date is generally a given.

Thanks for the incite...very helpful ;P

Nov 22 '05 #8
"alorentz" <al*******@msn.com> wrote in message
news:11**********************@g44g2000cwa.googlegr oups.com...
: >>Keeping your system up to date is generally a given.
:
: Thanks for the incite...very helpful ;P

Perhaps my statement wasn't clear. I had assumed you were up to date so I
didn't consider posting anything re: updates. It was not a slam. When I
get notifications for updates, I review and test out of production before
putting updates into production. I am also the decision maker. I know
everyone doesn't have this luxury, for numerous reasons, so my comment was
an explanation why I omitted referencing updates. It was a CYA statement,
not a UYA one. (O:=

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Nov 22 '05 #9
To clarify answer:

Connection pooling was disabled for security reasons, so you need to
add registry keys specified in article here:
path:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\servic es\Tcpip\Parameters
type: DWORD
name: TcpTimedWaitDelay
value: 30 (decimal)
type: DWORD
name: MaxUserPort
value: 10000 (decimal)
Ultimately is connection pooling is enabled this shouldn't happen, but
try it anyway. Check netsats from command prompt....if you see around
4000 connections in TIME_WAIT, then that is the problem.

Nov 22 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

33
by: Savas Ates | last post by:
in asp page im getting this error how can i solve it.. yesterday the codes work but i setup visual studio 6.0 now it doesnt works..
6
by: kwdavids | last post by:
I'm getting occasional instances of the error: SQL Server does not exist or access denied I get the error both in application code and from Enterprise Manager. The database is LOCAL. ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.