How do I make Access a read only database?

B

Bulldve

I have a Access 2002 database which various people can enter and add data,
using a password.
Other people want to look at this database and print out reports.
How can I make this a read-only file for these people.
 
A

Allen Browne

There are various solutions.

The most involved is to set up Access security, and assign permission to
groups. Each user's group will then determine what permissions they have.
Advantages: True security, excellent granularity. Disadvantages: possibly
overkill for what you need.

The simplest is to create 2 copies of the front end (assuming you have split
the database so each user has their own copy of the MDE front end locally,
and the back end mdb is in a shared location.) Advantages: Easy to create
limited functionality. Disadvantage: 2 front ends to maintain.

Another option is to set the AllowEdits and AllowDeletions properties of
each form in its Open event, depending on the user. This means either
getting the user's name at startup, or using a specially formed command line
shortcut for the users who have full permission. Advantage: Very easy to
maintain. Disadvantage: Not really secure if you have savvy nosy users.
 

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