came in this morning and found my asp webpage is erroring out when trying to connect to a sql server database it has been connecting to for 2 years. although the error i get is "access denied" - it takes a long time for the error to appear - as though it is timing out rather than an actual "access denied". i can take the asp page and place it on other servers and it connects just fine. it just won't connect from one particular server. the page was running fine friday afternoon. no work was done over the weekend. i just don't get it. could there be a service which is supposed to be running and isn't?
here's my connection process:
Const cConnection = "PROVIDER=SQLOLEDB;DATA SOURCE=CLUSTERSQL;UID=webuser;PWD=;DATABASE=PartsF inder"
Dim objConnection
Set objConnection = Server.CreateObject("ADODB.Connection")
objConnection.ConnectionString = cConnection
objConnection.CursorLocation = 3 '* adUseClient
objConnection.Open
what in the world could be wrong? 
|