Reconciling Downstream RSSDs

Reconcile system tables with downstream RSSDs.

Run rs_subcmp against the above tables, specifying site B as the primary and site E as the replicate, with prsid = 2 in the where clauses.
For example, the select statement for rs_columns should look like:
select * from rs_columns where prsid in
      (select source_rsid from rs_routes
       where
        (through_rsid = 2 or through_rsid = 5)
         and dest_rsid = 5)
       and rowtype = 1
      order by objid, colname

See Replication Server Reference Manual > Executable Programs > rs_subcmp, and see Replication Server Reference Manual > Replication Server System Tables.