Read Only

S

Steve

Good day all,

Does anyone have a real easy way to make a front end
database file read only. The front end file is linked to
a back end database. The back end needs to continue
continue to be written to, but I do not want the users to
be able to write through this front end.

Any help?

Thanks,

Steve
 
T

TC

Steve said:
Good day all,

Does anyone have a real easy way to make a front end
database file read only. The front end file is linked to
a back end database. The back end needs to continue
continue to be written to, but I do not want the users to
be able to write through this front end.

Any help?


You need to:
1. implement user-level security;
2. give the users *no access* to the FE tables, and
3. do all BE access to the tables using so-called "Run With Owner
Permission" (RWOP) queries.

Read-up on RWOP queries &/or search for that term in access newsgroups.

HTH,
TC
 
T

TC

TC said:
You need to:
1. implement user-level security;
2. give the users *no access* to the FE tables, and
3. do all BE access to the tables using so-called "Run With Owner
Permission" (RWOP) queries.


P.S.: none of which is "real easy", unfortunately ...

TC
 

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