-
Book Overview & Buying
-
Table Of Contents
IBM InfoSphere Replication Server and Data Event Publisher
By :
Q replication works well in a Database Partition Facility (DPF) environment, but there are a couple of design points to be aware of. Consider the sample configuration shown in the following diagram:

We have four servers called RED01, RED02, BLUE01, and BLUE02. We want to replicate from the RED side to the BLUE side. Each side will have four data partitions and a catalog partition with one DAS instance per box. The instance name is db2i001 and the database name is TP1.
The RED side is shown next. There are five database configuration files (DB CFG) and one database manager configuration file (DBM CFG). It is the "Detailed" table, which is replicated from the RED side to the BLUE side.

Note the following:
MQ installed on RED01
Replication control tables created on partition 0
Q Capture and Q Apply run on RED01
EXPLAIN tables defined on RED01
The first design point deals with tables, which have referential integrity. We need to ensure that all related parent and child tables are on the same partition. If we do not do this and start replication, then we will get ASN7628E errors.
If we want to load from the application, then the staging table should be partitioned similarly to the detailed table so that we can make use of collocation (therefore, we need the same partition group and same partition key).
If we want to insert from the application, then the staging table should be defined on partition 1 ONLY. If we are using INSERT, then we would use INSERT/SELECT/DELETE to transfer data from the staging table to the detailed table. We also need to perform simple housekeeping tasks on the staging table, for example regular online reorganizations.
An example of an INSERT/SELECT/DELETE statement is shown next:
with fred (id,name,trans_date) as ( select id,name,trans_date from stag_tab (delete from stag_tab where trans_date = current timestamp -10 minutes) ) select count(*) from fred (insert into det_tab select id,name,trans_date from fred);
Every time we run the above SQL, it will move records that are more than 10 minutes old from stag_tab to det_tab.
Change the font size
Change margin width
Change background colour