Hi,
I'm maintaining an old application. I'd to start a merge replication between two servers. But afterwards I get these error messages "Updating columns with the rowguidcol property is not allowed."
Is there really now way to use the tableadapters for updating anymore? Do I have to refactor this application in order to be able to do a merge replication?
Thanks for input.
Edit
I've checked the automatic generated XSD files and discovered that the in each updatestatement every field is updated. Some columns are from type unique-identifier and even if you cannot change these values from the application the statement goes like that
update myTable set uniquekeycol = oldValue .... where actualPrimaryKey = value
our testdatabase has the same scheme but is running on sql2008 and it looks like the application is working without any changes. (i've just created a merge replication without any subscribers).
it's getting stranger and stranger