sql-server – 无法通过sqlcmd连接到LocalDB

前端之家收集整理的这篇文章主要介绍了sql-server – 无法通过sqlcmd连接到LocalDB前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在学习sql Server,并且使用sqlcmd连接到本地数据库时遇到问题.

当我在Powershell中输入以下内容时:

sqlcmd -S "(localdb)\mssqllocaldb"

我收到以下错误信息:

sqlcmd: Error: Microsoft ODBC Driver 13 for sql Server : sql Server Network Interfaces: The system cannot find the file specified.
sqlcmd: Error: Microsoft ODBC Driver 13 for sql Server : Login timeout expired.
sqlcmd: Error: Microsoft ODBC Driver 13 for sql Server : 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.

如果我使用sql Server Management Studio,我可以连接到本地数据库.如果我使用实例名称管道,我也可以连接到本地数据库.

我有一个干净的安装的Windows 10 x64,Visual Studio社区和sql Server Management Studio 2016.

谢谢!

解决方法

尝试
sqlcmd -S ".\mssqllocaldb"

要么

sqlcmd -S ".\mssqllocaldb -uYOUR_User -pYOUR_PASSWORD"
原文链接:https://www.f2er.com/mssql/75935.html

猜你在找的MsSQL相关文章