vote up 0 vote down star

I can connect to my sql server 2008 developer server using this in a sample code project:

string connection = @"data source=.\SQLSERVER2008;Integrated Security=SSPI;Initial Catalog=RSINET.MVC";

When I try updating the web.config file like so, I get a sql exception:

 <add name="ApplicationServices" connectionString="data source=.\SQLSERVER2008;Integrated Security=SSPI;Initial Catalog=RSINET.MVC" providerName="System.Data.SqlClient"/>

The error that I get is this:

Verify that the instance name is correct and that SQL Server is configured to allow remote connections.

I am using the .NET provider?

matt

flag

2  
Please get in the habit of accepting the best answer provided, the one solving your problem. A "0% accept rate" on your user badge is really bad for your reputation. It's the right and polite thing to do on StackOverflow. See: meta.stackoverflow.com/questions/5234/… – marc_s Oct 20 at 18:34
Another good habit to get into when dealing with connection strings is to include the ApplicationName parameter. See johnnycoder.com/blog/2006/… – Stuart Ainsworth Oct 20 at 22:26

2 Answers

vote up 0 vote down check

Did you try using LOCALHOST\SQLSERVER2008 or 127.0.0.1\SQLSERVER2008 or \SQLSERVER2008? Also why is there a period in your database name? You will likely have to escape that (or preferably get rid of it by changing the name)... even if it doesn't solve this issue, it will cause others if you leave it that way.

link|flag
It is for a named instance of SQL Server .\SQLSERVER2008 Osql -E -S .\SQLSERVER2008 - Named instance installed on my pc. Osql -E - default instance installed – skurge Oct 20 at 14:51
vote up 0 vote down

Configure your server for remote connections

http://support.microsoft.com/kb/914277

link|flag
Yes, an essential step obviously. Could also be the firewall, depending on where the web site is running from. – Aaron Bertrand Oct 20 at 14:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.