我必须在 SQL Azure 查询编辑器中运行 SQL Azure Powershell 脚本。我已经在我的系统的 SQL Server(Express 版)查询编辑器中运行了 Windows Powershell 脚本
xp_cmdshell 'sqlps -command "$http=New-Object system.Net.WebClient;$http.downloadString(\"url\")"'
通过url成功调用了应用程序。但是当我尝试在 SQL Azure 中使用相同的概念时,我才知道有 SQL Azure Powershell。从这个 poweshell 我可以通过 url 调用应用程序,因为我需要打开 SQL Azure Powershell 并编写命令,我不想这样做。我想做我在 SQL Server 中编写查询以运行 Powershell 脚本的方式,我搜索了很多,但我没有找到如何在 SQL Azure 查询编辑器中运行 SQL Azure Powershell 脚本,因为它不支持xp_cmdshell。
任何人都可以帮助我解决这个问题或参考我的链接,我可以在其中找到有关 SQL Azure Powershell 的材料