通过查询连接到数据库引擎

发布于 2024-11-04 17:28:11 字数 112 浏览 0 评论 0原文

当您打开 SQL Server Management studio 时,您通过 UI 连接到数据库引擎。我希望通过 SQL 查询具有相同的功能,例如连接到我们编写的数据库,类似地有什么方法可以连接到数据库引擎。

When you open the SQL Server Management studio you connect to the Database engine through UI.I want same functionality through SQL query e.g. to connect to database we write Use similarly is there any way to connect to database engine.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

世态炎凉 2024-11-11 17:28:11

不支持您正在寻找的内容 - 您需要在连接到服务器对话框中提供凭据。

无法让查询窗口直接打开与数据库的连接。

What you are looking for is not supported - you need to provide the credentials in the Connect to Server dialogue.

There is no way to have a query window open a connection to a database directly.

天赋异禀 2024-11-11 17:28:11

在 SQL Server Management Studio 中,无法使用查询中的服务器名称、数据库名称、用户 ID 和密码连接到服务器。

您需要做的是转到对象资源管理器,单击连接,然后单击数据库引擎

在此处输入图像描述

连接到服务器后,您可以使用以下命令在数据库之间切换,

USE (database name)

但目前无法在 T-SQL 查询中连接到另一台服务器据我所知。

In SQL Server Management Studio, you cannot connect to a server using server name, database name, user id and password from a query.

What you need to do is go to the Object Explorer, click on Connect and then Database Engine:

enter image description here

Once you're connected to a server, you can switch between databases using

USE (database name)

but you cannot connect to another server in a T-SQL query, as far as I know.

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