write conflict

W

Walter Levine

I am using a stored procedure to update an sql server table from an Access
front end.
When I move off the record, I get a "write conflict" message offering to
write the new data, copy to the clipboard or discard,
Is there any way to surpress the message.
In google, there is stuff about putting a timestamp field in the table, but
that doesn't work.
Thanks for any help
Walter
 
S

Sylvain Lafontaine

Often, this is caused by a missing primary key.

You can also make a check at the Unique Table and Resync Command properties.
Personally, I use often a dummy SP witht the wrong number of parameters as
the Resync Command. Access see that it cannot use it and revert to the
default ADO resync behavior, which is simply to reuse the same data without
a refresh from the SQL-Server.

Take a look at the SQL-Server Profiler; you will learn a lot about this
problem and others.

The TimeStamp won't work if you forget to Refresh the list of Tables and
Queries from the View menu of Access.
 

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

Similar Threads

Trigger makes update impossible 7
write conflict 4
Write Conflict 3
write conflict from upsized .adp 4
Write conflict over-ride? 3
Write Conflict 7
Write Conflict with Subform 4
Write Conflict 8

Top