I'm tyring to figure out BAM for BizTalk Server 2010. I've attempted to take an existing BizTalk server installation - that was installed, configured, and running just fine - and re-configure it to use the BAMPrimaryImport database on a new BizTalk server installation. In re-configuring the existing installation, I first went into the BizTalk Server Configuration tool, removed the BAM Tools for that BizTalk group, applied that configuration (BAM Alerts had not been set up), then went back in and re-configured the BAM Tools and the BAM Alerts to use the new BizTalk server.
Keep in mind, these are two completely separate BizTalk groups. I've done nothing to share, or otherwise associate the BizTalk Groups; I've only shared the BAM database.
For reference, both BizTalk installations are running on Windows Server 2008R2 virtual machines, and I'm using SQL Server 2008R2 for both also. The first BizTalk setup was running on two servers - the BizTalk server (named BizTalkServer1) and the SQL Server (named BTSSQLServer1). The second BizTalk setup has both BizTalk and SQL Server installed on one server (named BizTalkServer2).
Since changing the BAM configuration, the "Backup BizTalk Server (BizTalkMgmtDb)" SQL Agent job running on BTSSQLServer1 errors out on the third step. The message is "Executed as user: {domain user name}. Could not find server 'BizTalkServer2' in sys.servers. Verify that the correct server name was specified. If necessary, execute the stored procedure sp_addlinkedserver to add the server to sys.servers. [SQLSTATE 42000] (Error 7202). The step failed."
Just before seeing this error, I had created and deployed a tracking profile, using an activity definition deployed on BizTalkServer2 and a BizTalk application running on BizTalkServer1. I then ran one message through the application to see if anything showed up in BAM - nothing did. There were no exceptions, and the message ran through the application just as I expected.
In looking into this, I've found the following interesting items: In the view "admv_BackupDatabases" (in the BizTalkMgmtDb database) on BTSSQLServer1 (the original SQL Server), there are records for the standard BizTalk databases on BTSSQLServer1, and there are records for the BAM databases on BizTalkServer2. However, these same databases appear in the same view on BizTalkServer2, except the BizTalk databases are, of course, on BizTalkServer2. Wouldn't this mean that BizTalk would effectively be backing up the same databases twice? Which would make restoring from the log backups a nightmare, correct?
Also, there is a linked server on both BTSSQLServer1 and BizTalkServer2 named BAMPrimaryImportSrv that points to the server it is on. Meaning the linked server on BTSSQLServer1 points to BTSSQLServer1 and the linked server on BizTalkServer2 points to BizTalkServer2. I'm assuming these were created during the initial configuration of BAM on each server. However, the linked server on BTSSQLServer1 still points to itself. It has not been updated to point to BizTalkServer2, as it seems everything else regarding BAM has. Even so, based on the error I'm seeing, it looks like the backup stored procedure is looking for a linked server named BizTalkServer2, but no linked server was created during the re-configuration.
I have, thus far, given the account used by the SQL Agent on BTSSQLServer1 sysadmin privalges and added it to the local Administrators group on BizTalkServer2. That has made no difference. I saved off the BAM configuration in an XML file using "bm.exe get-config", and re-applied it using "bm.exe update-config", all on BizTalkServer1. I can see a new configuration entry in the BAMPrimaryImport database bam_Metadata_Configuration table on BizTalkServer2, but nothing has changed regarding the error.
Has anyone ever attempted to do anything like this? I can understand why the BizTalk backup procedure would be looking to backup the BAM databases by default, but isn't there something that can be done so only the one job will backup the database? Also, why did the re-configuration not update, or add, the linked server?
UPDATE: The BAM tracking profile I deployed on BizTalkServer2 and configured to run against the application deployed on BizTalkServer1 did eventually show up in the BAM portal on BizTalkServer2. So as far as BAM tracking working, that is not an issue. My issue now is only the BizTalk database backup failing.