ACC2000: Linked SQL Server Table Cannot Be UpdatedID: Q208842
|
When you try to make changes to a linked SQL Server table, you cannot update the table.
To work around this behavior, check that the linked table has a unique index and that the unique index does not contain a timestamp field. If the unique index does contain a timestamp field, drop the index and create a new unique index on a field other than a timestamp field.
A timestamp field contains a unique, binary value generated by SQL Server that is updated whenever the record is updated. Access uses the value in the timestamp field to determine whether a record has been changed before updating it.
create table TestTimestamp (field1 varchar(10), timestampfield timestamp) go
create unique index TestTimestamp_Index on TestTimestamp (field1, timestampfield)
Additional query words: prb can't be updated attach attached attaching linking link change
Keywords : kbusage kbdta OdbcSqlms
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: June 16, 1999