Tagged Questions

3
votes
5answers
322 views

Is anyone using the Service Broker in SQL Server?

Hi all! 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, …
2
votes
1answer
63 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 …
1
vote
3answers
135 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 …
1
vote
2answers
211 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 …
1
vote
2answers
114 views

Chinese Characters in SQL Service Broker Message

I have setup multiple SQL Service Broker Queues in a database but have not seen this problem before. A message containing XML is being converted to what appears to be mostly Chines …
0
votes
1answer
73 views

SQL Server Service Broker Error Handling

I've got a stored procedure that puts a message on a SQL Server Service Broker message queue. I need to return an error message from the stored procedure if something goes wrong a …
0
votes
2answers
48 views

SQL Server Service Broker using DataSet

Hi, I am converting a console application to run from Service Broker in SQL Server 2005. The application makes heavy use of DataSet. Are DataSets supposed to work in SQLCLR? Ho …
0
votes
1answer
113 views

SQL Server Message Broker - External Activation

I have a Sql Server inside a restricted network. I need to somehow get data from the outside in. I would like to harness the use of Message Broker. My thinking is the external db …
0
votes
1answer
54 views

Make Service Broker Be Less Aggressive About Detecting Poison Messages?

Sql Service Broker uses the following heuristic to determine when you have messages in your queue that are preventing your application from doing any useful work: "Service Broker …
0
votes
1answer
139 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 …
0
votes
0answers
45 views

Anyone ever try this: Custom VirtualPathProvider (SQL Based) with SqlCacheDependency, SQL2005 and Service Broker?

I've been toying with the VirtualPathProvider the last couple of days and have gotten to the stage where I'm serving my aspx files from a SQL database but am stuck when it come to …
0
votes
1answer
126 views

sql service broker functionality question

Hi, I'm a beginning web developer sitting on an ambitious web application project. So after having done some research, I found out about SQL Service Broker. It seems like somethin …
0
votes
2answers
256 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 n …
0
votes
2answers
403 views

SQL Server Service Broker Issue & Tutorials

I've been looking into implementing an external activator in SQL Server Express 2005, and I added the queues, services, contracts, and event notifications to the database. I also a …