How to make linked SQL Server view updateable
If you link SQL Server view using Access interface, then Access asks you to select a unique index in order to make new linked table updatable. But once you relink table using code – its again becomes read-only. How to add unique index? DDL will help here, just run the following code:
Currentdb.Execute "CREATE UNIQUE INDEX PK ON VIEW1 (ID)"
Where ID – is a unique field, can be list of fields
3 Comments:
Thank you Alex! I've been struggling with this until I read your post.
Tom Wheatley
USA
Perfection!!!
Thanks Alex
Grzegorz Zak
Poland
Thans a lot!! Spot on!!
I was wondering if I had to redesign my solution, but luckely, I found your blog, and your suggestion solved my issue.
Best regards,
Lorents Nord-Varhaug
Denmark
Post a Comment
<< Home