I'm using Microsoft Access to connect to a postgres-database. On that postgres database I have a foreign-table via postgres_fdw
.
I can select on that table with MS Access, however running updates will throw the error:
Error 3073: Operation must use an updatable query
.
The update I'm running is:
UPDATE my_tbl SET my_column = null WHERE id = 1337;
Other applications have no issues doing so, this is limited to Microsoft Access. Any way to get it to work in Access?