Moved to a new server (Windows 2003 web edition)and also moved from MSDE to SQL Server Management Studio Express 2005
I'm new to SQL Server Management Studio Express 2005
and just created a user database.
When I'm trying to access it thru my .asp program
thru a website, I'm having the following error message:
------------------------------------------------------------
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC SQL Server Driver][Shared Memory]SQL Server does not exist or access denied.
/testlogin.asp, line 48
------------------------------------------------------------
This is part of the code :
set conn = Server.CreateObject("adodb.Connection")
conn.Open Application("strConn") <=== line 48
..
..
..
Application("strConn") = "DRIVER={SQL Server};database=testdb;uid=testuid;pwd=testpwd;server=testserver;"
..
..
The database seems to be fine as I can query it on the server.Seems to be a permission issue..isn't it? If this is the problem, how should I proceed or may be it's a different issue!!
Thanks in advance for your help.
Ton.
I'm new to SQL Server Management Studio Express 2005
and just created a user database.
When I'm trying to access it thru my .asp program
thru a website, I'm having the following error message:
------------------------------------------------------------
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC SQL Server Driver][Shared Memory]SQL Server does not exist or access denied.
/testlogin.asp, line 48
------------------------------------------------------------
This is part of the code :
set conn = Server.CreateObject("adodb.Connection")
conn.Open Application("strConn") <=== line 48
..
..
..
Application("strConn") = "DRIVER={SQL Server};database=testdb;uid=testuid;pwd=testpwd;server=testserver;"
..
..
The database seems to be fine as I can query it on the server.Seems to be a permission issue..isn't it? If this is the problem, how should I proceed or may be it's a different issue!!
Thanks in advance for your help.
Ton.