How can I limit user access to records in a table?

G

Guest

I have a database that contains salary information for each employee. I want
each Manager to be able to see/edit only records of their staff. How can I do
this?
 
J

Joan Wild

You can accomplish this using security, however it is a steep learning
curve, so study up on the topic and practice on a copy of your database.

Security FAQ
http://support.microsoft.com/?id=207793

Security Whitepaper
http://support.microsoft.com/?id=148555

I've also outlined the detailed steps at
www.jmwild.com/AccessSecurity.htm

In your case, you'll want to remove all permissions from the tables and use
RWOP (run with owner permissions) queries for all data interaction. You can
add a field to your table to indicate who owns the record.
 

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