Setting up consists of configuring the source, target, and control servers. The following sections provide instructions for configuring each server.
DB2 CONNECT TO database
where database is the source server database.
DB2 UPDATE DATABASE CONFIGURATION FOR database_alias USING LOGRETAIN ON DB2 BACKUP DATABASE database_alias
DB2 BIND @CAPTURE.LST ISOLATION UR BLOCKING ALL
where UR specifies the list in uncommitted read format for greater performance.
If your system does not support UR, substitute CS (cursor stability format) instead.
These commands create a list of packages, the names of which can be found in the CAPTURE.LST file.
DB2 CONNECT TO databasewhere database is the source server database.
DB2 BIND @APPLYCS.LST ISOLATION CS BLOCKING ALL
DB2 BIND @APPLYUR.LST ISOLATION UR BLOCKING ALL
Where:
These commands create a list of packages, the names of which can be found in the APPLYCS.LST and APPLYUR.LST files.
DB2 CONNECT TO databasewhere database is the target server database.
DB2 BIND @APPLYCS.LST ISOLATION CS BLOCKING ALL GRANT PUBLIC
DB2 BIND @APPLYUR.LST ISOLATION UR BLOCKING ALL GRANT PUBLIC
Note: | Because the Apply control tables use static SQL calls, the Apply bind process searches for nearly all of the control tables at each server that it is bound to, regardless of whether these control tables have any use or meaning at each server. |