通过查询连接到数据库引擎
当您打开 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不支持您正在寻找的内容 - 您需要在
连接到服务器
对话框中提供凭据。无法让查询窗口直接打开与数据库的连接。
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.
在 SQL Server Management Studio 中,无法使用查询中的服务器名称、数据库名称、用户 ID 和密码连接到服务器。
您需要做的是转到
对象资源管理器
,单击连接
,然后单击数据库引擎
:连接到服务器后,您可以使用以下命令在数据库之间切换,
但目前无法在 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 onConnect
and thenDatabase Engine
:Once you're connected to a server, you can switch between databases using
but you cannot connect to another server in a T-SQL query, as far as I know.