HP StorageWorks Storage Mirroring Application Notes - Guidelines for using Blackberry Enterprise Server for IBM Lotus Domino (T2558-96060, April 2007)

SAMPLE_UpdateMachineNameTarget.SQL
preback.bat
/***********************************************************************
SAMPLE SQL script to change the machine name in the BESMGMT database.
This will allow the Blackberry MDS service to function correctly after
failover occurs on the target server. This script should be executed by
the post failover script.
This sample file is provided as an example only. Because no two
environments or configurations are exactly the same, you MUST modify
this script in order to make the solution work in your environment.
Notes:
<targetname> = Name of the target server.
<source #> = Number of source server in SQL database.
***********************************************************************/
use besmgmt;
update mdsconfig set machinename='<targetname>' where id='<source #>' ;
go