Use SQL Server Management Studio to connect remotely to an SQL Server Express instance hosted on an Azure Virtual Machine

后端 未结 3 1676
死守一世寂寞
死守一世寂寞 2020-12-23 16:18

Initial Attempt

I have an Azure VM with Windows Server 2012, on which I just installed SQL Server 2012 Express Database Engine component. Then, I followed the inst

3条回答
  •  梦毁少年i
    2020-12-23 17:02

    The fact that you're getting an error from the Names Pipes Provider tells us that you're not using the TCP/IP protocol when you're trying to establish the connection. Try adding the "tcp" prefix and specifying the port number:

    tcp:name.cloudapp.net,1433
    

提交回复
热议问题