0

我知道在 SQL 中有诸如存储过程之类的东西,但是有没有办法让它们自动化,这样当将一行添加到表中时,sql azure 会自动获取一些数据并将其添加到单独的表中?

例如,表“DocumentComments”收到一个新行,如下所示

CommentID: 23 UserID: 57 Comment:"This is a comment." InResponseToUser: 73

执行存储过程

Catch CommentID 23 and insert new notification in table "Notifications"
NotificationID : 2520 UserID: 73 Read: False
4

1 回答 1

2

是的 Azure 称它们为触发器 - 这是一个描述如何创建触发器的链接:http: //msdn.microsoft.com/en-us/library/windowsazure/ee336242.aspx

这是 StackOverflow 上的一个示例: SQL Server input trigger to azure trigger

我希望这有帮助。

于 2013-05-08T22:13:19.723 回答