This is a discussion on Re: Data replication question within the DB2 forums, part of the Database Server Software category; --> >1) will the replication still be successfull without making any changes in > Apply/Capture program (DB2 DataPropagator)? Yes. > ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| >1) will the replication still be successfull without making any changes in > Apply/Capture program (DB2 DataPropagator)? Yes. > 2) Does FULL-REFRESH ONLY copying only deletes/inserts rows in target table > without recreating it or any other object? Full refresh only means every time Apply runs it will copy the entire source table to the target. Depending on options Apply can use SQL or Export/Load to perform the copy. > 3) Does DIFFERENTIAL-REFRESH copying only inserts/updates rows in target > table without recreating it or any other object? Differential means Apply copies the changes, inserts, updates, or deletes are copied. You can choose to excludes deletes (or inserts or updates) if you wish via a predicate which tests the IBMSNAP_OPERATION column. 4) Is there any other replication programs besides DB2 DataPropagator? I have heard of one called Data Mirror. Best regards, Jim Stewart |