Hi All,
I am getting too many errors messages like "The Service Broker endpoint is in disabled or stopped state." in my sql server error logs. I have two instance with SQL server 2012 along with SP1 (Enterprises Edition) and enabled Always On features b/w the server for more than 10 users database to meet HADR . My SQL Server log is getting fulled because of this error messages.
I tried below query to identified Service Broker is enabled or disalbed on all user databases.
SELECT
is_broker_enabled
FROM
sys.databases
WHERE
name
=
'Database_Name'
Output was 0
I can't alter the database statement to enable Service since its configured in database mirroing.
Does it affects the performanc of the database/instance/with database mirroirng or should Ignore the error message.
Any Idea how to troubleshoot the issue
Thanks
Raghu