How do I not allow updates when linking

C

cclark

I have an external sql database and I am using access to link to the sql
database to do reports but I don't want users to be able to see the tables
and make changes (deletes, inserts, updated) to the actual sql database
using the links. I would like to be able to have real time data from the sql
database when using access to do reporting (don't want to import data). How
can I accomplish securing the sql database and keeping the access
reporting database real-time?
 
R

Rick Brandt

cclark said:
I have an external sql database and I am using access to link to the
sql database to do reports but I don't want users to be able to see
the tables and make changes (deletes, inserts, updated) to the actual
sql database using the links. I would like to be able to have real
time data from the sql database when using access to do reporting
(don't want to import data). How can I accomplish securing the sql
database and keeping the access reporting database real-time?

You could create a passthrough query instead of using a link. They are
automatically read only.

Otherwise you should handle this by setting the security on the server table
so that no unauthorized peoople can edit the data.
 
C

cclark

Rick Brandt said:
You could create a passthrough query instead of using a link. They are
automatically read only.

Otherwise you should handle this by setting the security on the server table
so that no unauthorized peoople can edit the data.

Thanks Rick,

Can you explain passthrough query or point me to a document?
 
C

cclark

cclark said:
Thanks Rick,

Can you explain passthrough query or point me to a document?

Thanks Rick,

I see the info under help in Access. Thanks for the assistance.

cclark
 
C

cclark

Rick Brandt said:
You could create a passthrough query instead of using a link. They are
automatically read only.

Otherwise you should handle this by setting the security on the server table
so that no unauthorized peoople can edit the data.

Can I use passthrough with an Oracle database also?

Thanks,
cclark
 

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