无法从 SSMS 连接到 SQL Server Express
我已经安装了 SQL Server Management Studio 2005。当我单击“浏览更多”时,我找不到我的服务器名称,但我知道我的服务器名称将与下图所示的用户名相同。
I have installed SQL Server Management Studio 2005. I can't find my server name when I click browse for more but i know that my server name will be the same as the user name as in the picture below.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您将服务器安装为默认实例,请使用
.
或(local)
或localhost
作为服务器名称。使用
.\ sqlexpress
或localhost\sqlexpress
(如果您有 SQL Express)。服务器名称语法为
Servername\InstanceName
如果实例是默认实例,则只需使用 Servername。
对于 SQL Express,实例名称默认为 sqlexpress。
Use
.
or(local)
orlocalhost
for server name if you installed the server as default instance.Use
.\sqlexpress
orlocalhost\sqlexpress
if you have SQL Express.The server name syntax is
Servername\InstanceName
If the instance is default you use just Servername.
For SQL Express, instance name is sqlexpress by default.
请参阅:
Please see:
将本地服务器与 .Net 6 项目结合使用,请遵循以下两个简单步骤。
第 1 步: 检查 appsettings.json 文件的设置
第 2 步: 在 SQL SERVER Management Studio 中,您应该使用“(localdb)\mssqllocaldb”作为服务器名称。
Using Local server with .Net 6 project, follow these two simple steps.
Step1: Check appsettings.json file with settings
Step 2: In SQL SERVER Management Studio you should use "(localdb)\mssqllocaldb" as Server name.