SQL: Implementing queues in SQL Server the right way
There are many times when I need to use a queue in my database designs. Service Broker is a transacted queue that lives right in your SQL Server database. If you haven’t used it, or don’t even know why you should, read on.
The primary reason that I like to use queues is that they let you decouple different applications or different parts of applications. Let me give you some examples:
2019-06-20