SQL Server Express cannot connect error: 28 - Server doesn't support requested protocol

前端 未结 3 845
走了就别回头了
走了就别回头了 2020-12-13 12:03

I cannot connect to my local SQL Server Express (2012, but the version shouldn\'t matter) from my server (Windows 2008 R2) to use a tool on it (APEX SQL Data Diff if you are

相关标签:
3条回答
  • 2020-12-13 12:41

    Thanks to this article for getting me somewhere with the error message. The issue is the necessary network protocols are disabled by default in SQL Server Express. I had to go to Sql Server Configuration Manager locally and turn on "Named Pipes" and "TCP/IP". After that, you need to restart the SQL Server Browser and SQL Server(instance) services.

    SQL Server Config manager

    While I did not have to, you may also need to check in "SQL Server Network Configuration" under "Protocols" for settings that need adjusted there.

    Hope this helps someone else!

    0 讨论(0)
  • 2020-12-13 12:42

    Don't forget to also check under "SQL Server Network Configuration" -> Protocols for YourInstance. I was a bonehead and forgot to look there too.

    0 讨论(0)
  • 2020-12-13 13:02

    SQL Configuration Manager:

    The picture has the wrong group selected on the link panel: it should be SQL Server Network Configuration → Protocols for SQLEXPRESS.

    0 讨论(0)
提交回复
热议问题