Tagged Questions

SQL Server Service Broker is a messaging framework built into SQL Server. It includes infrastructure for asynchronous programming that can be used for applications within a single database or a single instance as well as for distributed applications.

learn more… | top users | synonyms (1)

17
votes
4answers
10k views

Difference between a Message Broker and an ESB

I have gone through different questions/articles on Message Brokers and ESBs(Even on stackoverflow). Still not a clue as what is the CLEAR demarcating difference between an Message Broker and an ESB? ...
10
votes
4answers
1k views

Is anyone using the Service Broker in SQL Server?

When I attended a presentation of SQL Server 2008 at Microsoft, they did a quick gallup to see what features we were using. It turned out that in the entire lecture hall, my company was the only one ...
8
votes
3answers
533 views

to MSMQ or not to MSMQ? (or SQL Table as the Queue)

I've got a distributed system where there will be 1 SQL Server, 1-n processing servers, and 1-n data suppliers (hardware devices across the network). The data being supplied will require processing ...
7
votes
5answers
5k views

Should I use MSMQ or SQL Service Broker for transactions?

I've been asked by my team leader to investigate MSMQ as an option for the new version of our product. We use SQL Service Broker in our current version. I've done my fair share of experimentation and ...
5
votes
1answer
2k views

SQL Service Broker and .NET Windows Service - Best practices?

I currently have a database that gets updated from a legacy application. I'd like to utilize a SQL Service Broker queue so that when a record is updated, a message is placed in the queue (using a ...
4
votes
3answers
467 views

What is Service Broker?

What is Service Broker in SQL Server and is it meaningful to enableitin a simple Database, Not in a distributed DB. please do not close this question, I saw others similar question and non of them ...
4
votes
3answers
2k views

Can you/should you use SQL Server Service Broker with .NET applications?

I have many operations in the database that need to trigger application code. Currently I am using database polling, but I hear that SQL Server Service Broker can give me MSMQ-like functionality. ...
3
votes
2answers
274 views

Sql Server Service Broker

Currently we are using service broker to send the messages back and forth, which is working fine. But we wanted to group those messages by using the RELATED_CONVERSATION_GROUP. We wanted to use our ...
3
votes
2answers
344 views

Help diagnosing poor Sql Server Service Broker forwarding performance

I've been running Service Broker in my development environment for a few months now and have had perfectly adequate performance, toward 1000 message per second (plenty for my needs). I've also been ...
3
votes
2answers
274 views

The future of SQLServer Service Broker

is there any information on the future of the Service Broker infrastructure in SQLServer? The team's blog (http://blogs.msdn.com/b/sql_service_broker/) is not very active and there were only minor ...
3
votes
4answers
821 views

SQL Service Broker Success?

I am contemplating converting our internal application from MSMQ and WCF to SSB. We would like a more feature rich system with regards to our queuing. However, I am not seeing a lot of ...
3
votes
1answer
1k views

Sql Server Service Broker Conversation Groups

Can someone explain conversation groups in service broker? Currently, I'm using service broker to send messages from one SQL server to another. On the sending server, I'm trying to correlate the ...
3
votes
2answers
1k views

Sql Server Service Broker: How to structure Conversations for a simple queue scenario?

I'm a Sql Server Service Broker novice and I'm trying to grasp the best way to set Service Broker up for a (seemingly) simple use case: I want to create a simple work queue, where one application ...
2
votes
1answer
71 views

Maintain order of message in outgoing queue - .Net

In my scenario, messages are coming in a predefined order. Once it enters our system, multiple receivers picks up the message from the incoming queue and processes it. Once the processing is done, the ...
2
votes
0answers
179 views

Deletion of SQL Service Broker queue is slow

We have a system using SQL server service broker inside a single database. This database is mirrored using high-safety mode and a witness. We have a routing application that receives messages from a ...
2
votes
2answers
139 views

SQL Server Service Broker — Suggestion for Handling Two-Phase Commit Between SQL Server Instances

We're exploring different approaches for communicating between two different SQL Server instances. One of the desired workflows is to send a message of some sort to the "remote" side requesting, ...
2
votes
2answers
400 views

Interprocess messaging - MSMQ, Service Broker,?

I'm in the planning stages of a .NET service which continually processes incoming messages, which involves various transformations, database inserts and updates, etc. As a whole, the service is huge ...
2
votes
2answers
1k views

Requirement for a Master Key for Service Broker

I have read in various MSDN pages and SQL Server blogs that "usually" a Master Key is required in a Service Broker database. Indeed, when trying to RECEIVE messages I get the following application ...
2
votes
2answers
198 views

Service Broker conversations not closed (staying in CONVERSING state)

I'm noticing some conversations not getting closed, staying in CONVERSING state. The strange thing is, the queue is configured to process only 1 message at a time. In practice, however, there are 2 ...
2
votes
1answer
1k views

MSMQ vs. SQL Server Service Broker

I have an application that consists of three parts: a front-end web shop for end-users and business partners an order-management system to handle those orders a technical database system to handle ...
2
votes
1answer
173 views

Receive Service Broker from a CLR stored procedure

I'm trying to move this T-SQL stored procedure to a CLR procedure, but there's a Service Broker specific command that I don't know how to implement: DECLARE @msgBody XML DECLARE @dlgId ...
2
votes
1answer
1k views

Service Broker : Sys.Conversation_endpoints filling up with CO/CONVERSING messages when using With Cleanup

We recently identified a problem with one of our databases where as a result of a 'fire & forget' setup (i.e: conversations being closed immediately after sending), our sys.conversation_endpoints ...
2
votes
1answer
619 views

Service broker with SqlNotificationRequest

I am in the process of evaluating a Service Broker with SQL noticiation for my project. My requirements is User places a order from System A and it will update Order Table. As soon as order is place i ...
2
votes
3answers
920 views

.Net API for SQL Service Broker

Is there a .Net API or object model for using SQL Service Broker?
2
votes
4answers
1k views

Query Notification Error

We have this weird issue regarding SQL Query Notification service. We have a main web application running with QN service so the cache item in the web get notification from SQL when the monitoring ...
2
votes
2answers
876 views

How to reduce flooding a Service Broker queue?

I'm new to using the SQL Service 2005 Service Broker. I've created queues and successfully got conversations going, etc. However, I want to sort of "throttle" messages, and I'm not sure how to go ...
2
votes
1answer
108 views

.Net database message brokering

I'm looking for a simple and reliable mechanism to perform application message brokering from the database level. I basically need changes in two distinct applications to generate messages to each ...
1
vote
1answer
37 views

Why would a Service Broker Receive take longer than the specified timeout?

I'm writing a high load application that uses SQL Server Service Broker. I have got to a state where running the following script in Management Studio takes 1 minute 6 seconds, even after I have ...
1
vote
1answer
315 views

msdb.dbo.sp_send_dbmail does not execute within a stored procedure

I've used the following code to set up deadlock monitoring: http://weblogs.sqlteam.com/mladenp/archive/2008/07/18/Immediate-deadlock-notifications-without-changing-existing-code.aspx and it works ...
1
vote
3answers
189 views

Sql Service Broker, CLR Intergration, Triggers back end problem

I'm looking for the most efficient way to build a backend for storing/processing data. Basically, data is sent to a server, parsed then saved to a db. Some processing is then done on it based on other ...
1
vote
0answers
139 views

Service broker queue message arrived but notification doesn't work

I am using the External Activator provided by Microsoft to monitor service broker queue messages. The main queue's name is "ReportQueueTarget". I also set up a notification queue like this: CREATE ...
1
vote
1answer
176 views

Minimum user permissions to run a SQL Service Broker Application

I would like to use SQL Server 2005 Service Broker to create an update application. The main reason I'm looking to use Service Broker is that I need to call a web service from a trigger (which I've ...
1
vote
1answer
100 views

sql broker route tcp test to same server

For testing purposes, I placed two databases on the same server, I want to send queued messages between databases via TCP (not GUID.) Would I still need an endpoint since its all on 1 server? Also do ...
1
vote
1answer
522 views

SQL Server Service Broker: how to determine overhead or max performance?

We are trying to determine whether we are using Service Broker appropriately and getting the max performance out of it. We have been tweaking our SB conversations and handling, and have gone from ...
1
vote
3answers
468 views

“The notification message type <MessageType> was unexpected.” is logged by SSBEA and my app is never called

I am running SQL Server 2005 Standard Edition with External Activator installed. I have the following code in an SSMS tab: -- Begin a conversation and send a request message DECLARE @InitDlgHandle ...
1
vote
1answer
69 views

Single conversation in Service Broker

I'm going to do async auditing on my SQL Server 2008 as shown here: http://auoracle.blogspot.com/2010/02/service-broker-master-audit-database.html What it does is: a trigger sends a message to a ...
1
vote
1answer
367 views

Using SQLDependency/SqlNotificationRequest to have multiple instances of the same app receive the same notifications?

I started looking at this recently with the very limited knowledge that the ASP.NET Cache could somehow make use of a SqlCacheDependency to invalidate the cache when a table (or a queries results) ...
1
vote
1answer
404 views

How can I check in c# if Broker Service is enabled in SQL?

I want to check if Broker Service is running using code and depending on the status, start sqldependency or not. How can I do that?
1
vote
2answers
324 views

Service Broker And Web services

I want to implement a stored procedure (within a service broker infrasturture) which calls a web service. I looked some examples from Aschenbrenner's book on Service Broker. However I don't find any ...
1
vote
1answer
179 views

Using SQL 2008 ServiceBroker for high-volume threadsafe FIFO queue

I'm just starting to evaluate ServiceBroker to determine if it can perform as a reliable queue in a very specific context. Here is the scenario: (1) need to pre-calculate a large (several million) ...
1
vote
1answer
781 views

Service Broker not working after database restore

Have a working Service Broker set up on a server, we're in the process of moving to a new server but I can't seem to get Service Broker set up on the new box. Have done the obvious (to me) things ...
1
vote
2answers
384 views

Help with Service Broker error message

I am getting this error in my sys.transmission_queue table whenever I attempt to send a SQL Service Broker message between two different SQL Server servers. (i.e. the databases are on two different ...
1
vote
1answer
102 views

SQL Server Service Broker Service Disappearing (Automatically Deleted)?

I've implemented a messaging system over SQL Server Service Broker. It is working great, with the sole exception that every once in a while (maybe once per week per server) my initiator service just ...
1
vote
1answer
179 views

Get hostname when reading Service Broker Queue (SQL Server 2005)

I am trying to configure auditing on my SQL Server using Service Broker. I did all the configuration needed to capture the DDL Events (queue, routes, endpoints, event notification). It is working ...
1
vote
2answers
49 views

Why is initializing service not in quotes when target service is?

I've just inherited a SQL Server 2005 database that's using service broker (this is part of a bigger project/solution). Everything about the solution is working fine. I'm trying to grok the service ...
1
vote
2answers
584 views

SQL Server Service Broker — Communicating Between Non-Domain Servers Over a VPN

Are there any good options for connecting two SQL Server 2008 instances via Service Broker if neither of those servers are in a domain, but we have full control over the logins and credentials? We're ...
1
vote
1answer
906 views

Service broker - multiple queues vs single queues when communicating with external apps

We currently have an application that uses service broker to queue messages to sent to an external system, which we communicate with via a web service interface. At present we only integrate with a ...
1
vote
1answer
203 views

Sending messages to two services simultaneously usind Service Brokers

could I send messages from one service to multiple service using service brokers? Something like BEGIN DIALOG CONVERSATION @dialog_handle FROM SERVICE [SERVICE1] TO SERVICE ...
1
vote
2answers
270 views

SQL Server Service Broker to insert data on a SQL Server 2000

I have two servers, the first one with SQL Server 2005 and the second one with SQL Server 2000. I want to insert data from the 2005 to the 2000 and I want to do it unsync (without distributed ...
1
vote
1answer
286 views

SQLServer 2008 - Configuring Service Broker between instances

I've been using the scripts from this website to help configure Service Broker based auditing. The first stage - setting up SB between databases on the same instance works fine. But then, when I try ...

1 2 3