Knerd
Knerd

Reputation: 2002

WebRequest via SQL Azure

I would like to issue a HTTP webrequest from a stored procedure in SQL Azure. I know that there are ways to do this on a normal SQL Server, but does it work on azure aswell?

Upvotes: 1

Views: 113

Answers (1)

Vadim K.
Vadim K.

Reputation: 1101

I assume that you refer to OLE Automation procedures. It is not possible with SQL Azure. SQL Azure prevents you from calling server resources, it is limited to transactional processing only.

Upvotes: 1

Related Questions