Up to date sample of selecting individual records.
jbaggaley
Posts: 38
Please can you point me in the direction of an up to data row selection sample because ResultsStoreType in the example below seems obsolete as it has been moved theoretically to RedGate.SQLDataCompare.Engine.SynchronizationRecord. However you need to create an instance of that before you can read ResultsStoreType as a property so I am not sure how it should be used.
I need to compare two tables and then based on a list of required records, choose those to be replicated in the same way that tables can be chosen.
http://www.red-gate.com/messageboard/vi ... horizontal
(btw we have now got several licences so thanks for your help whilst I was initially evaluating)
I need to compare two tables and then based on a list of required records, choose those to be replicated in the same way that tables can be chosen.
http://www.red-gate.com/messageboard/vi ... horizontal
(btw we have now got several licences so thanks for your help whilst I was initially evaluating)
:-)zz[
Comments
The new version of the Data Compare library has some new features that may make the old selectiondelegate code obsolete. What you can do in the API of version 5 is use a where clause on all of your tables:
here is a modification of one of the code snippits.
Hope that helps
David
I also need to query based on multiple column primary key fields and would love to know of any examples you have for doing that in v5 too.
Thanks
Jon
using RedGate.SQLDataCompare.Engine.ResultsStore;
thanks
Jon