sql server 2012 - Is there any performance impact by enabling the Service broker at database level? -
i working on poc pushing database notifications ui using signalr using following articles: http://techbrij.com/database-change-notifications-asp-net-signalr-sqldependency http://gkulshrestha.wordpress.com/2014/05/02/signalr-with-sql-server-query-notification/
the article has suggested enable service broker on database level.
select name, is_broker_enabled sys.databases
alter database demodatabase set enable_broker go
grant subscribe query notifications "demousertesting"
can let me know there impact of performance @ database level or other issues if enable service broker on database level.
service broker better performance when using sql backplane signalr, although work out it.
see here full explanation http://www.asp.net/signalr/overview/signalr-20/performance-and-scaling/scaleout-with-sql-server
Comments
Post a Comment