Hi
This is not so much a programming problem as a data change commitment problem.
I have a table, newly made... no one else has access to it.
No other operations are being performed on this table.
I open it in SQL server 2005. I edit data in the table manually. Some of the rows however give an Optimistic Concurrency Control Error.
I am asked if I want to commit anyway. I hit 'Yes' but the data is not commited and the error message states that the data has been changed since it was last retrieved.
Why is this happening? I really have to edit this data manually as every entry must be eyed and a blanket UPDATE statement is just not feasible.
The table has not keys, indexes, nothing. It is a simple
three column table.
Thanks for any suggestions!
This is not so much a programming problem as a data change commitment problem.
I have a table, newly made... no one else has access to it.
No other operations are being performed on this table.
I open it in SQL server 2005. I edit data in the table manually. Some of the rows however give an Optimistic Concurrency Control Error.
I am asked if I want to commit anyway. I hit 'Yes' but the data is not commited and the error message states that the data has been changed since it was last retrieved.
Why is this happening? I really have to edit this data manually as every entry must be eyed and a blanket UPDATE statement is just not feasible.
The table has not keys, indexes, nothing. It is a simple
three column table.
Thanks for any suggestions!