Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Read-only access to linked tables

Status
Not open for further replies.

inf33323

Technical User
Apr 24, 2001
26
DE
Hi all,

I have a Access2000 database and I use two linked tables in it. Anybody using my database can add, delete and update recods in the linked tables. I would like to hinder this and to guarantee only read-only access to them.

Would appreciate any idea.

Thanks,

inf33323
 
You would need to lock down security on the other side. i.e. for SQL Server.
REVOKE DELETE, INSERT, UPDATE
ON [Table Name]
FROM [User Names]
 
Use the MS Access User Level Security Wizard and remove edit, delete and add data permissions on all of the tables from the admin user.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top