I got the error 25016 while inserting into a table.
The solution from the msdn:
Ensure that no duplicate key violations have occurred.
Such violations may occur when users insert records into a table with an identity column. SQL Server CE remote data access (RDA) does not manage identity columns when a table is pulled.
Or
Ensure that a replication publication is configured to manage identity columns for a table(s) in the publication.
My question:
What is the problem with an identity column ? Yes, I am using RDA, but problems occurs with one table only. How can I disable an identity column ? This isn't a primary key isn't it ?
But more interesting is the second solution from the msdn. Where can I enable "Identity Columns Management" ?
Thanks in advance for possible solutions.
The solution from the msdn:
Ensure that no duplicate key violations have occurred.
Such violations may occur when users insert records into a table with an identity column. SQL Server CE remote data access (RDA) does not manage identity columns when a table is pulled.
Or
Ensure that a replication publication is configured to manage identity columns for a table(s) in the publication.
My question:
What is the problem with an identity column ? Yes, I am using RDA, but problems occurs with one table only. How can I disable an identity column ? This isn't a primary key isn't it ?
But more interesting is the second solution from the msdn. Where can I enable "Identity Columns Management" ?
Thanks in advance for possible solutions.