Unable to update a linked table

P

Peo

Hi

I have created a table in SQL Server. In my Microsoft Access database I have
then linked to the table in SQL Server. From Access it works well to insert
new rows, but some rows I can't update. If I translate the error message from
swedish into english it goes: "The record has changed by another user"
"This record as changed by another user since you started to edit. If you
save the record the other users changes will be lost.

If you copy to the clipboard you can inspect the other users changes. Then
can you maybe paste your changes again."

Anyone knows how to solve this problem? I want to be able to update the table.

Regards
/Peo, Sweden
 
R

Rick Brandt

Hi

I have created a table in SQL Server. In my Microsoft Access database I
have then linked to the table in SQL Server. From Access it works well
to insert new rows, but some rows I can't update. If I translate the
error message from swedish into english it goes: "The record has changed
by another user" "This record as changed by another user since you
started to edit. If you save the record the other users changes will be
lost.

If you copy to the clipboard you can inspect the other users changes.
Then can you maybe paste your changes again."

Anyone knows how to solve this problem? I want to be able to update the
table.

Regards
/Peo, Sweden

Add a Timestamp field to the table on the server. Also, if it contains
bit fields set them to not allow Nulls. If that doesn't fix the problem
then it might be because the DataType of the primary key is one that
Access doesn't have a compatible match for (BigInt for example).
 
P

Peo

Thank you! You made my day! Problem solved.

Rick Brandt said:
Add a Timestamp field to the table on the server. Also, if it contains
bit fields set them to not allow Nulls. If that doesn't fix the problem
then it might be because the DataType of the primary key is one that
Access doesn't have a compatible match for (BigInt for example).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top