vote up 0 vote down star

I have a nice little Linq2SQL project however when deployed the database is on another server. I keep getting a named pipe error that the remote server doesn't exist - yet it does, it has Named Pipes enabled (protocol + surface) SQL 2005. TCP connections work fine.

I've tried setting the library in the connection string to a TCP one, I tried forcing TCP in the server name however Linq is always and only using Named Pipes and just won't work.

Any idea how to force Linq2SQL to use TCP/IP only, if possible?

thanks

flag

44% accept rate
Are you sure it's actually using the connection string you're giving it, rather than defaulting somewhere else? If you change it to something silly with easily-recognisable text, does that text end up in the exception? – Jon Skeet Mar 25 at 20:07
I can't tell - I added some debug info to fetch the connection string and display it and that was correct but the data context object might be doing something funky. – typemismatch Mar 25 at 20:10

3 Answers

vote up 0 vote down

My guess is that you are not setting the connection string to None on the DBML designer file which is creating the typed data context for you. Set the connection string to None (make sure nothing on the designer is selected) and then pass in the connection string manually, to assure that you have complete control over it.

As noted in the comments, you can't set the connection string to none.

In this case, there is still an overload of the typed DataContext which takes a connection string as a parameter. I would recommend using a hard-coded one first to see if it works. If it does, then you know it is the resolution of the item from the config file. Otherwise, you know to look at the connection string itself.

Also, if it is a problem with resolution in the config file, I usually place this in my connection string section FIRST to clear entries from the machine.config file:

<clear />
link|flag
You are right, we won't set it to none - we need it in there and it is just a connection string from the app.config file. – typemismatch Mar 25 at 20:59
vote up 0 vote down

How about changing the protocol order in the SQLConfiguration manager or using the command tool, cliconfig on the client and changing it there.

link|flag
vote up 0 vote down

I've seen this happen when (any of these):

  • The SQL client version isn't the one you expect
  • Windows Authentication is being used, often unintentionally
  • The connection information you provide doesn't match with the server's own name. (That is, select @@server_name doesn't return the same as the NETBIOS name. Fix using sp_dropserver and sp_addserver)

Sometimes reinstalling MDAC on the client machine helps, apparently because the driver looked like it was there but wasn't fully working.

Hope this helps...

link|flag

Your Answer

Get an OpenID
or

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