无法从 SSMS 连接到 SQL Server Express

发布于 2024-11-07 11:29:45 字数 233 浏览 0 评论 0原文

在此处输入图像描述

在此处输入图像描述

我已经安装了 SQL Server Management Studio 2005。当我单击“浏览更多”时,我找不到我的服务器名称,但我知道我的服务器名称将与下图所示的用户名相同。

enter image description here

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

眼眸 2024-11-14 11:29:45

如果您将服务器安装为默认实例,请使用 .(local)localhost 作为服务器名称。

使用 .\ sqlexpresslocalhost\sqlexpress(如果您有 SQL Express)。

服务器名称语法为

Servername\InstanceName

如果实例是默认实例,则只需使用 Servername。
对于 SQL Express,实例名称默认为 sqlexpress。

Use . or (local) or localhost for server name if you installed the server as default instance.

Use .\sqlexpress or localhost\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.

拧巴小姐 2024-11-14 11:29:45

将本地服务器与 .Net 6 项目结合使用,请遵循以下两个简单步骤。

第 1 步: 检查 appsettings.json 文件的设置

{
    "Logging": {
        "LogLevel": {
            "Default": "Information",
            "Microsoft.AspNetCore": "Warning"
        }
    },
    "AllowedHosts": "*",
    "ConnectionStrings": {
        "MvcMovieContext": "Server=(localdb)\\mssqllocaldb;Database=YourDBName;Trusted_Connection=True;MultipleActiveResultSets=true"
    }
}

第 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

{
    "Logging": {
        "LogLevel": {
            "Default": "Information",
            "Microsoft.AspNetCore": "Warning"
        }
    },
    "AllowedHosts": "*",
    "ConnectionStrings": {
        "MvcMovieContext": "Server=(localdb)\\mssqllocaldb;Database=YourDBName;Trusted_Connection=True;MultipleActiveResultSets=true"
    }
}

Step 2: In SQL SERVER Management Studio you should use "(localdb)\mssqllocaldb" as Server name.
enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文