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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

User Access - How do I grant RW access to records

Status
Not open for further replies.

Maturi

IS-IT--Management
Oct 9, 2003
81
GB
Hi,

I'm trying to setup a database with a number of users. I can see how to grant read/write access to tables and forms by user. But is there an easy way to define RW access to individual records in a table ?

Thanks
 

Nope!

But you (a user in the admins groups) could revoke Read rights to the table, create a query to filter records! And even show less fields!

SELECT Field5, Field47
FROM myTable
WHERE FilterField = True
WITH OWNER ACCESS;

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top