Monitor data changes in SQL Azure

前端 未结 2 1717
既然无缘
既然无缘 2020-12-02 00:43

Is there a way to to get notifications when SQL Azure data changes or when new data is inserted? I would like to send notifications to an ASP.NET web application and push no

2条回答
  •  感动是毒
    2020-12-02 01:23

    One option that might work for you is to use a cron service like Aditi Scheduler. The way you might achieve this is to have some service URL that when called makes a call to your SQL Azure db to detect if new data is inserted and then send the notification when there is new data. You would then configure the Aditi scheduler to call this service endpoint say every 10 min. The Aditi scheduler would be free (I believe) if you use it to call your service no more frequently than every 10 min.

提交回复
热议问题