Understanding Service Broker to perform asynchronous operations – (Part-2) Author: Basit A. Farooq Creating queues Next, you create the queue using the CREATE QUEUE statement. You must specify queue_name as a fully-qualified name unless you are creating it in the current database using your default schema. The syntax is: CREATE QUEUE [ WITH [ STATUS = […]
Tag: service broker
Understanding Service Broker to perform asynchronous operations – (Part-1)
Understanding Service Broker to perform asynchronous operations – (Part-1) Author: Basit A. Farooq Editor’s note: In this multiple part article series, you learn how to configure Service Broker components. You will create a message type to define the format of a message, a contract to define communication between services, a queue to store and deliver messages, and a service to […]
Monitoring Blocked Processes with Event Notifications
Monitoring Blocked Processes with Event Notifications Author: Basit A. Farooq Introduction SQL Server is able to service requests from a large number of concurrent users. When SQL Server is servicing requests from many clients, there is a strong possibility that conflicts will occur because different processes request access to the same resources at the same time. A conflict in which...