Hi @Sudip Bhatt ,
Per my knowledge and after some searching, there is no exact one thing named service worker in sql server.
Since you mentioned 'service worker create queue', you seems to talk about Service Broker.
In the official document about Service Broker, you could refer some details like '
When to use Service Broker' and the basic steps to create services, send messages and process message.
Service Broker is an asynchronous messaging framework with which you can implement scalable, distributed, high available, reliable, and secure database applications based on SQL Server.
Here are some examples:
- With asynchronous database triggers you are able to defer long running tasks inside a trigger to a later time. This will improve the performance of your database applications.
- With distributed message-based database applications you are able to decouple related tasks within your database applications and process these tasks independently from each other at different times. This will help you with the scale out of your database applications.
You could also refer complete examples of Service Broker from below links and check whether they are helpful to you:
Service Broker Part 1: Service Broker Basics
SQL Server Service Broker Explained
Best regards
Melissa
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.