Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在自动部署我们的管理工具。当将新服务器添加到我们的监控系统时,我有一个创建链接服务器的触发器。
我正在尝试让我的代码创建数据库以通过中央服务器的链接服务器工作。
完成此任务的任何提示和技巧?
通常,您不能对链接服务器执行 DDL。不过有一个技巧。您可以远程调用 sp_executesql。
在尝试之前,您需要将链接服务器的 RPC Out 属性设置为 True。
EXEC [yourlinkedserver].tempdb.dbo.sp_executesql N'CREATE DATABASE Test;';