0

我面临一个问题。我有这 3 台服务器:

1 Server1
2 Server2
3 Server3

我想创建一个Server1以 html 格式发送电子邮件的作业,包括xp_fixeddrives所有三台服务器的驱动器空间。

请帮助我-实现这一目标的最佳方案是什么?

4

1 回答 1

0

如果您在 server1 中为 server2 和 server3 链接了服务器,那么您可以像下面这样执行

EXEC master.dbo.xp_fixeddrives
EXEC Server2.master.dbo.xp_fixeddrives
EXEC Server3.master.dbo.xp_fixeddrives

最好的方法是从 SQL 作业运行 powershell 脚本。请查看以下示例 https://gallery.technet.microsoft.com/scriptcenter/PowerShell-and-Notification-50630dc9

于 2018-04-19T18:58:21.340 回答