Asynchronous triggers in SQL Server
I need to know what is the meaning of "asynchronous trigger" and is there difference between asynchronous triggers and the n开发者_高级运维ormal triggers that is used in SQL Server after or before inserting, updating, deleting.
I think you're getting confused with Service Brokers.
Triggers always execute synchronously, in the context of a given transaction. If you need to invoke an asynchronous process from within a trigger, use a Service Broker.
It's basically like a Queue - you send things to the queue, then can go on about your business without waiting for it to finish.
However, there is a lot more to it than that, have a read of the link.
精彩评论