There may be a problem when you configure your database with broker and create queue and Services.
You may already done with following
ALTER DATABASE Chatter SET ENABLE_BROKER
CREATE QUEUE ContactChangeMessages;
CREATE SERVICE ContactChangeNotifications
ON QUEUE ContactChangeMessages
([http://schemas.microsoft.com/SQL/Notifications/PostQueryNotification]);
But even that front end dont works.
In this case the problem cannot be solved without knowing reason but there can be a hit in the dark .You can try this
You may already done with following
ALTER DATABASE Chatter SET ENABLE_BROKER
CREATE QUEUE ContactChangeMessages;
CREATE SERVICE ContactChangeNotifications
ON QUEUE ContactChangeMessages
([http://schemas.microsoft.com/SQL/Notifications/PostQueryNotification]);
But even that front end dont works.
In this case the problem cannot be solved without knowing reason but there can be a hit in the dark .You can try this
ALTER AUTHORIZATION ON DATABASE::[your database name] TO [sa];.
Done :)
Comments
Post a Comment