Azure SQL Table -> SQL Server View -> Linked Access table: can't update Azure SQL Table -> SQL Server View -> Linked Access table: can't update sql-server sql-server

Azure SQL Table -> SQL Server View -> Linked Access table: can't update


I am not sure this will apply to your case but the last time I was unable to update an SQL Server View from MS Access the solution was to make sure the Access linked table that represented the view had a primary key.

This is what I use to create the PK:

CurrentDb.Execute "CREATE INDEX __uniqueindex ON [" & TableName & "](" & PKFieldName & ")"