本文介绍了SQL-使用命名实例连接到链接服务器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何连接到链接的SQL Server的命名实例.
How do I connect to a named instance of a linked SQL server.
如果未链接,我将执行以下操作:
If its not linked, I would do the following:
ServerName.DatabaseName.dbo.TableName
如果链接了,我将假设以下内容:
If it is linked, I would assume the following:
ServerName\InstanceName.DatabaseName.dbo.TableName
但是SQL不喜欢"\"
but SQL doesn't like the "\"
正确的语法是什么
推荐答案
检查
您可以将服务器名称括在方括号内
You can surround server name with brackets
这篇关于SQL-使用命名实例连接到链接服务器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!