BizTalk Server complains from time to time:

Reading error. Failed to recover from previous error. SQLServer: XXX, Database: BizTalkMsgBoxDb.

Should I care this, or simply ignore it?

link|improve this question

60% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Looks like a temporary loss of connectivity to the MessageBox. Not good, but also not critical as long as connectivity is restored quickly enough. The specific error message relates to BAM, which you can switch off if not being used. However, the problem will affect BizTalk as a whole.

You would have to find out what's causing the loss of connectivity and address that. Might not be easy, mind you, I have seen this happening on DEV boxes with both BizTalk and SQL Server on the same box...

http://msdn.microsoft.com/en-us/library/aa972199(BTS.10).aspx

link|improve this answer
Thanks. I think I disabled BAM tools and irritating message disappeared. (Start > All Programs > Microsoft BizTalk Server 2010 > BizTalk Server Configuration and then under BAM Tools unchecked Remove the Business Activity Monitoring tools for this BizTalk Group) – mmdemirbas Jan 27 at 9:51
No, continues to appear :/ How to disable it? – mmdemirbas Jan 27 at 9:57
The BAM Event Bus Service runs within the context of a BizTalk tracking host instance. To disable it, you need to use hosts that have tracking disabled - see msdn.microsoft.com/en-us/library/aa559857.aspx for more details – Fabio Jan 27 at 14:41
But be careful about disabling Tracking on all hosts. If you use BizTalk Tracking and there are no hosts with Tracking Enabled, running, you will end up just backing up all the tracked messages in the MsgBoxDB. I've been there :-) – LarsWA Feb 16 at 17:16
feedback

As per Fabio, the message you received is likely to be specific to BAM.

The types of error that you get in your eventlog if BizTalk hosts and ENTSSO does lose connectivity with SQL are listed here

These errors are more serious and can result in the loss of messages (Hosts and Receive Locations are usually stopped).

These errors can occur intermittently and then a minute or two later you see

Communication with MessageBox BizTalkMsgBoxDb on SQL Instance XXX has been re-established

Common causes of BizTalk : SQL Connectivity issues are listed here

We've found the usual culprit of connectivity issues to be the TCP/IP SynAttackProtect security feature on the SQL Server host - BizTalk can hog a lot of SQL Connections, especially during a 'ramp up' of connections required when a batch of messages comes in after a protacted idle period.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.