sql server - Run SQL Azure Powershell script in query editor -
i have run sql azure powershell script in sql azure query editor. have done run windows powershell script in sql server(express edition) query editor of system as
xp_cmdshell 'sqlps -command "$http=new-object system.net.webclient;$http.downloadstring(\"url\")"'
it called application url. when try use same concept in sql azure, come know there sql azure powershell. poweshell can call application url, need open sql azure powershell , write command, don't want in way. want way did in sql server write query run powershell script, searched lot don't find how run sql azure powershell script in sql azure query editor since doesn't support xp_cmdshell.
can 1 me solve problem or refer me link can find material sql azure powershell
you can't execute powershell scripts on sql azure machine because of security related issues. why want execute powershell script, script do? perhaps there way of achieving objective.
Comments
Post a Comment