Hi,
I've uploaded a SQL Server database that I developed on my own workstation (using SQL Server Eval edition) to a server, and am trying to access it via an ASP page on the same server. However, I keep getting the following error:
I'm using the following connection string (and have tried several variations on it), using the userid and password I set in SQL Server security:
The string works fine when I try accessing the database from the ASP page on my own workstation. How can I get it to work in the "real" world?
Thanks,
M
I've uploaded a SQL Server database that I developed on my own workstation (using SQL Server Eval edition) to a server, and am trying to access it via an ASP page on the same server. However, I keep getting the following error:
Code:
Microsoft OLE DB Provider for SQL Server error '80004005'
[DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.
I'm using the following connection string (and have tried several variations on it), using the userid and password I set in SQL Server security:
Code:
"Provider=SQLOLEDB;Persist Security Info=False;Initial File Name=PhysicalPathToFile;Initial Catalog=DatabaseName;User ID=sa;Password=pw"
The string works fine when I try accessing the database from the ASP page on my own workstation. How can I get it to work in the "real" world?
Thanks,
M