SSB FAQ  (1) – Target Queue cannot receive message

 

SSB target queue can not get a message, when the sender sends a message without any error.

Run the following SQL query:

Select * From sys.Transmission_queue

 

SYMPTOM:

Get the following exception info from the Transmission_Status field.

The session keys for this conversation could not be created or accessed. The database master key is required for this operation.

 

SOLUTION:

declare @dialog uniqueidentifier

 

BEGIN dialog conversation @dialog

From service Service_OutStock_Sender

To Service 'Service_OutStock_Receiver'

On Contract Contract_OutStock

With Encryption=OFF

….

 

Just include With Encryption=OFF might solve the above issue, because the default value is ON.

 

Another solution is to mark your database as trustworthy:

Alter database db_name set trustworthy on,

and create a master key in both databases:

Create master key encryption by password=’your password’

 

 

相关文章:

  • 2022-01-25
  • 2022-01-13
  • 2021-12-18
  • 2022-12-23
  • 2021-11-18
  • 2021-09-18
  • 2021-07-11
  • 2021-12-09
猜你喜欢
  • 2021-12-17
  • 2021-06-06
  • 2022-12-23
  • 2021-12-24
  • 2022-12-23
  • 2021-10-10
  • 2021-09-29
相关资源
相似解决方案