I have a SQL Server 2008 database linked to an Access 2010 front end.
Some of the columns are varchar
of varying lengths, from 50 to MAX
. There is no default value and they can be null.
Recently, any of these columns longer than 255 started causing the write conflict error:
This record has been changed by another user since you started editing it. If you save the record, you will...
I can update other data, including varchar
data, in the same row, with no problems and no errors.
This error occurs when I attempt to update the column directly from my table. It also occurs if I update the table programmatically via VBA or through a form.
It looks like this is because the column is NULL
in SQL Server, but I've never seen this before with varchar
columns. Is this a "feature" or a thing you just have to work around? It just started happening regardless, which is also confusing.