I got access to SQL Azure. My problem is I can see Powershell in my local system but not in remote Sql server.
Through SSMS I can access SQL Azure and I can see the Databases and I can create database, but I can't use Powershell.
In my local sql server I used Powershell to send the http request like
$http_Request = New-Object system.Net.WebClient;
$Result = $http_Request.downloadString("url");
It was working fine, but when I try the same thing in SQL Azure I can't. any help?