Filtering rows for compare
Brian Donahue
Posts: 6,590 Bronze 1
Hello,
Thanks for your post. There are two ways to go about synchronizing a subset of data. The easiest is to create an indexed view on the table in your databases, then compare the indexed views.
The second way would be in code using the SQL Toolkit. You could write some code to compare the entire table, but synchronize only the rows of data matching your criteria using a SelectionDelegate object.
Please let me know if you need more information.
Thanks for your post. There are two ways to go about synchronizing a subset of data. The easiest is to create an indexed view on the table in your databases, then compare the indexed views.
The second way would be in code using the SQL Toolkit. You could write some code to compare the entire table, but synchronize only the rows of data matching your criteria using a SelectionDelegate object.
Please let me know if you need more information.
This discussion has been closed.