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
10 views

SQL Service Broker External Activator not launching exe

I need to get SSB External Activation to launch an exe off of a db trigger. With the bits of information available on the net I have managed to get almost everything working perfectly. I can send ...
0
votes
0answers
16 views

connecting a oracle database to a sql server database on different VM's

i need to connect a database adventureworks on a sql server database on a VM with ip address XXX.XX.XX.X port XXXX to an oracle database ORCL with an ip address XXX.XX.XX.XXX port XXXX i will need to ...
0
votes
1answer
25 views

inconsistent activation settings

I have a service that uses the infamous fire and forget pattern (don't judge me, I didn't create it) that was working fine on SQL Server 2005. I recently upgraded to 2012 and now ssbdiagnose is ...
1
vote
0answers
45 views

Architecture recommendation using SQL Server for real-time aggregation and denormalization

We have an enterprise LOB application for managing millions of bibliographic (lots of text) records using SQLServer (2008). The database is very normalized (a complete record might easily be made of ...
0
votes
3answers
49 views

Best Option for Queuing Status Updates .NET

I'm looking for some feedback in regards to the best option for a problem I am working on. To give you some background I recently inherited a broken business application (our project was using it, ...
0
votes
0answers
25 views

Cannot delete empty SQL Server Broker Queues

I have queues created in proper order like so: CREATE MESSAGE TYPE MyMessageType AUTHORIZATION dbo VALIDATION = WELL_FORMED_XML GO CREATE CONTRACT MyMessageContract AUTHORIZATION [dbo] (MyMessageType ...
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
30 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
60 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
52 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 ...
2
votes
1answer
129 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
65 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
84 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
36 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
60 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
36 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
22 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
39 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
23 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
36 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
59 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
61 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
41 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
57 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
48 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
37 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
2answers
53 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
61 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
127 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
62 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
67 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
112 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
68 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
69 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
84 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
242 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
156 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
95 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
208 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
284 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
297 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
58 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
113 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
111 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 ...

1 2 3 4 5