Is it possible to post data from a SQL Server trigger to an external web page via POST or GET method?
For example, I want to post value of a field "BOOKID" on INSERT trigger to http://www.example.com/newbook.php?id=XXXXX
Is it possible to post data from a SQL Server trigger to an external web page via POST or GET method?
For example, I want to post value of a field "BOOKID" on INSERT trigger to http://www.example.com/newbook.php?id=XXXXX
It is possible via an unsafe CLR assembly. With WebClient in it. And you'd want to call this CLR sproc in the said trigger. But, personally, it's an incredibly and amazingly bad idea.