Edit SQL Server data via an ADP

C

CJM

We have a some data in SQL Server that we want a small number of users to be
able to edit, so and Access Data Project seemed like the correct route to
take.

However, having created the ADP file, and linked to the SQL Server, it shows
the right tables but wont let us change any values in the tables.The
connection uses Windows Authentication and all the relevant users have
permissions to edit the data in SQL Server. Hell, in the DBA and even I
can't edit it.

So I'm obviously missing something... anyone got any ideas?

Thanks in advance

Chris
 
U

Uri Dimant

CJM
Why not create a new GROUP for these users and grant them login to SQL
Server. Don't put the login in ssyadmin server role, instead assign an
appropriate permissions , for more details please refer to the BOL.
 
C

CJM

Uri Dimant said:
CJM
Why not create a new GROUP for these users and grant them login to SQL
Server. Don't put the login in ssyadmin server role, instead assign an
appropriate permissions , for more details please refer to the BOL.

Uri,

I'm an idiot - there was no primary key set, which of course is essential
for editing...!

I've created a primary key, and it works fine.

Thanks for your help

Chris
 
D

Dan Guzman

Tables must have a primary key or unique column list in order to be
updatable from Access.
 
C

CJM

Dan Guzman said:
Tables must have a primary key or unique column list in order to be
updatable from Access.

--
Hope this helps.

Dan Guzman
SQL Server MVP

It would have done an hour ago! lol

Thanks anyway..

Chris
 

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

Top