I want to configure my Microsoft SQL Server to enable named pipes, because right now I get this error when I try to connect to my projects database on Azure:
A network-related or instance-specific error occurred while establishing a connection to SQL server. The server was not found or was not accesible. Verify the instance name is correct and that SQL server is configured to allow remote connections. (provider: Named Pipes Provider, error:40 - could not open a connection to SQL server) The network path was not found
In quest to solve the problem I have found some resource:
- How do I fix the error 'Named Pipes Provider, error 40 - Could not open a connection to' SQL Server'? here on SO.
How to Fix named Pipes Provider Error 40 cannot open connection to Sql server instance
SQL Server Configuration Manager on msdn.microsoft.com
The conclusion seems to be I need to access the SQL Server Configuration Manager to enable Named Pipes and some other stuff. Problem is, I can't find it on my system.
I have checked C:\Windows\SysWOW64 for
- SQL Server 2016 C:\Windows\SysWOW64\SQLServerManager13.msc
- SQL Server 2014 C:\Windows\SysWOW64\SQLServerManager12.msc
- SQL Server 2012 C:\Windows\SysWOW64\SQLServerManager11.msc
- SQL Server 2008 C:\Windows\SysWOW64\SQLServerManager10.msc
It is not there.
I use the newest version of Visual Studio 2015 Enterprise, everything installed.