Hi
In order to track changes in tables I was going to add a RowVersion to each affected table. Then at a certain point in time take the max rowversion used in the table and store it. Some time in the future I can then query a table and find all the rows that have change since my last check.
In order to make this perform well, I was going to add indexes to these tables based on the RowVersion column. Would this be a bad idea as this column is frequently changing?
Thanks for your help
Graham