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)

0
votes
0answers
13 views

SQL Service Broker stops working [migrated]

I'm new in using service broker. Our existing service broker suddenly stops working and I can't figure out why. When I try to enable service broker (which is already enabled) I get this in SQL error ...
0
votes
0answers
13 views

External Activator for SQL Service Broker [closed]

After having set up a Service Broker implementation for doing asynchronous executions in the database, I'm running into issues with activation. Internal Activation won't work for my needs because of ...
2
votes
1answer
44 views

Maximizing SQL Server Service Broker Throughput

We've implemented an SSB messaging solution for our application, but are running into scaling issues now. Can anyone with experience in the scaleup of SSB applications offer any suggestions as to ...
0
votes
1answer
41 views

creating a service broker contract permission

I'm trying to create a contract in sql for pushing messages out from sql onto nservicebus (msmq) queues although I'm getting the following error message when executing this code! any ideas why I get ...
1
vote
1answer
91 views

How to use SqlCacheDependency?

I need to implement SqlCacheDependency for a table which will depend on this query: SELECT Nickname FROM dbo.[User]. I have created a method for this purpose: private IEnumerable<string> ...
1
vote
1answer
34 views

Getting a CLR stored procedure activated by a broker queue to run as the database owner

I'm trying to set up a CLR stored procedure to be run from a service broker queue so that the CLR stored procedure runs as the database owner. I've tried all sorts of combinations but can't get this ...
0
votes
1answer
81 views

Best way looking for changes on SQL Server?

What is the "best" way to look for changes in tables on a SQL Server 2008 instance? We have an external application and the user wants to be "informed", when changes happen... Today we use triggers, ...
0
votes
1answer
30 views

sending data through emails between different sql servers

I have a sql server external to our organisation that sends automated emails with a few basics pieces of data to a staff members mail box. It's then manually transcribed into a csv file which is ...
1
vote
1answer
41 views

SqlDependency subscription not dropped from dm_qn_subscriptions on shutdown

My SqlDependency works fine, and the Broker Queue and Service get dropped properly when the application exists (I do execute SqlDependency.Stop(...) as recommended before terminating the process), yet ...
0
votes
0answers
31 views

Service broker cross instances (to different databases)

I am creating a service broker application for a cross instance/server communication. I have been working with Service broker for sometime and I am a little comfortable. my service broker is working ...
0
votes
0answers
14 views

How to reuse service broker conversation handle in trigger

in my trigger, i get data from inserted table and send it to targetQueue. There's a targetProc configured for that queue, in this sp, it get data from queue and do something and then end conversation. ...
0
votes
0answers
31 views

Pitfalls of using Service Broker to issue notifications to external app

I have a requirement broadly similar to this question: I need to integrate two third-party applications (i.e. I don't have access to the code of either application). App2 needs to know about a ...
0
votes
0answers
22 views

Queue on server Level(queue messages from multiple databases in one queue)

i want to gather queue of messages from multiple databases in one queue(using service broker) so i create empty database containing the queue that receive the message from other databases i wanted ...
0
votes
0answers
24 views

service broker activation store procedure don't run when queue receive a new message

I want to build async triggers with service broker, and in trigger, we send message to queue, and there's a activated sp for that queue, but when send a message, the sp don't run. please help. 1.I ...
0
votes
1answer
42 views

Any links to Service Broker best practices?

I am looking for any authoritative articles on Service Broker best practices. In particular, I am looking for the following topics (I know the answers, but have to find documents that support the ...
0
votes
1answer
46 views

Service broker queues are disabling themselves, can't unearth the reason

In sys.transmission_queue the only information I'm given is "One or more messages could not be delivered to the local service targeted by this dialog." If I re-enable one of the problem queues (there ...
0
votes
2answers
31 views

can a non-dbo sql server user create a queue in service broker?

we have an application being developed where it is running as the AD user connecting to a service broker enabled SQL Server 2008 database. We are having trouble granting the right permissions to get ...
0
votes
1answer
53 views

With Service Broker, how to know when all sent messages have been processed by a target service?

Pretty new in the use of SS Service Broker, I'm not able to find a simple way to know when all sent messages have been processed. I'm using Service Broker to multithread a task by splitting it into ...
0
votes
1answer
44 views

Query for file group of Service Broker Queue in SQL Server

How do you query the file group of a Service Broker Queue object in SQL Server? I can see the information via SQL Server Management Studio, by looking at the Properties of the Queue, but I'd like to ...
1
vote
2answers
35 views

Query MSSQL after the queue name?

Can I do some kind of query to retreive the queue name by using a service name?
0
votes
1answer
35 views

No enabled application monitor is on behalf of queue XYZ

I created a console application which will be used by "Service Broker External Activator" service. The configuration file in "C:\Program Files\Service Broker\External Activator\Config" has been ...
0
votes
1answer
41 views

start two SqlDependency on same sqlconnection but different sql commands

I build some service that on start open two threads, each one start SqlDependency with same sql connection but the command its different. Its possible? its seems to working, but after some will when ...
0
votes
1answer
101 views

Use SQL Service Broker to Decouple Service From Database?

I'm looking at putting together a fairly straight-forward WCF-based service, and I have a question about how best to decouple it from the database. Background: The service I'm going to be ...
3
votes
1answer
31 views

'RECEIVE TOP(X) ' and services

When sending messages with SSB we'll initialize conversations by specifying to and from services. But when reading, all we do is to RECEIVE without specifying services. So how do I make sure that I ...
0
votes
0answers
54 views

service broker instead replication

i want use service broker instead of replication , because of manage of service broker is flexible in my goal , there is one publisher with many same subscription . 1- do you offer this solution ? ...
1
vote
1answer
62 views

service broker behavior on target disabled

i need to know about behavior of sender service broker if target queue id disabled or unreachable . sender broker retry unlimited until lifetime and CPU is busy always ? Or can configure service ...
0
votes
1answer
36 views

“receive top X” doesn't return X messages

I got a queue with a lot of messages. I'm requesting 200 messages per read/transaction: using (var connection = _configuration.ConnectionFactory.OpenConnection()) { using (var transaction = ...
0
votes
2answers
105 views

Is sys.conversation_endpoints reliable when target queue is local?

(see my edit at the bottom of this original post for the solution) Setup I have two stored procedures in my Microsoft SQL Server 2005 Express database: WaitForMyMessage(@myName NVARCHAR(50), ...
1
vote
1answer
64 views

Service Broker application won't send message between queues

I made this Service Broker application: http://pastebin.com/M1jZg2Pt I want to run stored procedure spInsertLogLine and for a record to end up in table log_line. I do exec ...
0
votes
0answers
65 views

SqlCacheDependency via Service Broker Notifications - SELECT command GOOD MANNERS

Should the Select for Service Broker Notifications in SqlCacheDependency Approach look so - I mean the SET options: "SET ANSI_NULLS ON; SET ANSI_PADDING ON; SET ANSI_WARNINGS ON; SET ...
0
votes
1answer
82 views

SqlCacheDependency via Service Broker Notifications - SELECT sensitive ONLY on particular columns

Is it possible to define a Notification on SELECT, but in that way: the Broker would reset Cache only if columns written in select has changed. So Column Sensitive approach. I don't want the cache ...
0
votes
1answer
181 views

I want my database (SQL) to notify or push updates to client application

I was developing this application on VB.net 2010 and SQL 2008. I wanted the clients to be notified for updates on the db, and the application used to check the db for changes in the specified minute ...
0
votes
1answer
130 views

SqlCacheDependency via Service Broker Notification in a WebEdition of SqlServer 2008 R2

I would appreciate Your help: We are planing to buy SQL Server 2008 R2 Web Edition (we must this version), however we would also like to use a functionality of Service Broker for SqlCacheDependency ...
2
votes
1answer
81 views

Service Broker and database ownership mismatch

I have a SQL Server 2008 R2 implementation with Service Broker turned on for a .Net/IIS website running on the same box. It doesn't throw an error when the global.asax application_startup event ...
0
votes
0answers
28 views

how to replay service broker messages

Am using SQL Server Service Broker 2012.Am capturing the messages in the ServiceBrokerError table if there is any error while processing the Service Broker message.Now how can i reprocess the updated ...
0
votes
1answer
182 views

How to enable/disable a Service Broker queue using SMO?

I am using SMO objects to access my database. I have service broker enabled on SQL Server. I was wondering if anyone knew how to enable/disable queue's through code (VB/C#). I've tried ...
0
votes
2answers
236 views

Why do I need two SQL Server Service Broker queues for a simple task?

All examples I find on the web for using SQL Server Service Broker queues seem to have two queues. I don't understand why but every example seems to assume that this is so obvious as to be unnecessary ...
0
votes
1answer
196 views

Simply add a message to a SQL Server Service Broker queue using T-SQL?

I created a queue thus: CREATE QUEUE log_line_queue WITH RETENTION = ON, --can decrease performance STATUS = ON, ACTIVATION ( MAX_QUEUE_READERS = 1, --number of concurrent instances ...
0
votes
0answers
55 views

cloudfoundry vcap service_broker usage and error

recently I try to combine my mysql cluster to cloudfoundry, and I configure the pre_defined_services.yml like below: service: name: demo_service description: mysql_cluster version: "5.5.28" ...
0
votes
2answers
43 views

Stop a queue's N consumers

I have an SSBS queue and a main process send M messages to the queue. There are N sub-processes which fetch the messages one by one and process them. The sub-processes will exit after all the messages ...
0
votes
0answers
35 views

One contract between two end-point? One service per end-point?

I am implement the following actions between end point A and B using Sql Service broker. What's the best architecture? Steps: A send messages [//File/Request] requesting files. Each message ...
2
votes
1answer
93 views

Sql Service Broker and transaction

All the examples on MSDN put the sending and receiving statements in transactions. The following script is from http://msdn.microsoft.com/en-US/library/bb839499(v=sql.100).aspx Question 1: Why all ...
1
vote
0answers
103 views

The asynchronous operation has already completed

I have a VB.net app with a DataGridView displaying a list of jobs, retrieved from a SQL query into a DataTable, then a DataView and finally a BindingSource for the DataGridView.DataSource. I have ...
0
votes
1answer
45 views

Does firiing off an indefinite WAITFOR increase the log file size?

In the last release of my app, I added a command that tells it to wait when something arrives in the Service Broker queue WAITFOR (RECEIVE CONVERT(int, message_body) AS Message FROM MyQueue) The ...
0
votes
1answer
78 views

Using SQL Server Service Broker in Powershell script?

I have a PowerShell script do the following tasks: Loop a big database table Generate text file Zip the text file FTP upload the zipped file Write to the log table The step generating text ...
3
votes
1answer
673 views

Sql Server Service Broker - thorough, in-use example of externally activated console app

I need some guidance from anyone who has deployed a real-world, in-production application that uses the Sql Server Service Broker external activation mechanism (via the Service Broker External ...
1
vote
1answer
367 views

Parallel execution of stored procedures in Transact SQL

Hello again everybody, I would like to execute stored procedures in parallel in SQL Server 2008. I will not be using any external tool(SSIS, CLR). I decided to take the approach mentioned in rusanu's ...
3
votes
3answers
297 views

Immediate and scheduled business transactions - MSMQ/NServiceBus/MS Sql Service Broker/Windows Task Scheduler?

I have this scenario, guys- A typical large-scale CMS application in which the following business transactions appear: Users publish content immediately. Users schedule content to be published. ...
1
vote
0answers
91 views

How to track Changes in StreamInSight?

In my project i need to track newly inserted rows in database table. And give those rows to .net application for processing.I went through StremInSight, it suits correctly.So What i want to know is ...
0
votes
4answers
93 views

Service Broker: How can I detect the script is executed on the wanted machine?

My SQL scripts are generated from templates. They contain the IP address. There can be a lot of them and the operator can by mistake execute the incorrect script. How the script can check if it was ...

1 2 3 4 5