我可以访问SQL Azure。我的问题是我可以在我的本地系统中看到Powershell但在远程Sql服务器中看不到。
通过SSMS我可以访问SQL Azure,我可以看到数据库,我可以创建数据库,但我不能使用Powershell。
在我的本地sql server中,我使用Powershell发送http请求,如
$http_Request = New-Object system.Net.WebClient;
$Result = $http_Request.downloadString("url");
它工作正常,但是当我在SQL Azure中尝试同样的事情时我不能。有什么帮助吗?