sql-server – SQL Server网络接口:连接字符串无效[87]

前端之家收集整理的这篇文章主要介绍了sql-server – SQL Server网络接口:连接字符串无效[87]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我从我的sql Server 2008实例上的cmd运行它时:
sqlcmd -U sa -S mymachinen_name\MSsqlSERVER

(其中MSsqlSERVER是我的实例名称)

我得到密码的提示,之后我得到了这个:

Password:

HResult 0x57,Level 16,State 1 sql Server Network Interfaces: Connection string is not valid [87].

sqlcmd: Error: Microsoft sql Server Native Client 10.0 : A network-related or instance-specific error has occurred while establishing a connection to sql Server. Server is not found or not accessible. Check if instance name is correct and if sql Server is configured to allow remote connections. For more information see sql Server Books Online..

sqlcmd: Error: Microsoft sql Server Native Client 10.0 : Login timeout
expired.

我启动了sql Server浏览器服务,也可以使用Windows身份验证通过Management Studio登录.

也找到了这个KB article,但这是针对sql Server 2005/2000的.

解决方法

通常,MSsqlSERVER服务是未命名的默认实例的服务.

因此,试试这个:

sqlcmd -U sa -S mymachine_name

(没有指定任何实例名称 – 只是机器名称)

原文链接:https://www.f2er.com/mssql/83081.html

猜你在找的MsSQL相关文章