Order of IGNOREINSERTS & IGNOREUPDATES
Hi,
Do IGNOREUPDATES & IGNOREINSERTS for a table have to be specified in any order?
We specified it in the foll. way and inserts were ignored but updates were not ignored:
IGNOREINSERTS
MAP table1 TARGET table1
IGNOREUPDATES
MAP table1 TARGET table1
We then changed the order as follows
IGNOREUPDATES
MAP table1 TARGET table1
IGNOREINSERTS
MAP table1 TARGET table1
And the updates were ignored (we haven't checked further to see if the inserts were ignored or no).
Thanks