how do I setup multiple users in one database

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Once a form is opened in the database other users are unable to open the
database. Hod do I compensate for this in access.
 
Hugster said:
Once a form is opened in the database other users are unable to open
the database. Hod do I compensate for this in access.

First you should split the database so a back end database has all the
data (well most of it) and each individual has a front end on their machine
linked to the back end and the front end has the forms queries etc. (well
most of them).

However your problem is more likely an access right issue where the
users do not have proper read write create delete access to the directory
where the file is located and-or someone is opening the database
exclusively. Once anyone opens the back end or only file exclusively, no
one else will be allowed in.
 
Hugster said:
Once a form is opened in the database other users are unable to open the
database. Hod do I compensate for this in access.

You need to split the database into a back-end (all the data tables) and a
front-end (everything else) and link the 2 using a network share that
everyone can see. There's a splitter wizard in Tools ... Database Utilities
that will walk you through it.

Put a copy of the front-end on each machine and make sure that Access is set
up in options not to open the file exclusively. Also make sure that each
user has permissions to delete and create files, or you won't be able to
create the record locking file (LDB)

It should work fine from there.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 
If you have not split the database into two parts, a front-end and
back-end, that's where I would start. From your description of the problem,
it appears like your database is a single file that is saved in a network
folder and gets 'locked' whenever a person opens the file.

A Brief Explanation
The back-end is commonly kept (stored) in a network folder where each
intended user is given access to the folder (a network administrator can
help setup a share). Security is the concern here--you don't want people
getting access that don't need it.

The front-end is commonly installed on the client machines, your
computer. However, unlike the back-end, the front-end application has
'linked' tables to the back-end. You can use UNC or drive mapping to make
the connection to back-end tables.

TIP: Its good practice to save the front-end application in the same folder
on each computer--you'll thank me later. For example:

C:\Program Files\CompanyName\ApplicationName\ApplicationFile.mdb

If you have questions, keep'em coming.

Best regards,

Todd

Once a form is opened in the database other users are unable to open the
database. Hod do I compensate for this in access.
 
Hi,

Change from "Exclusive" to Shared" in Tools|Options|Advanced|Default Open
Mode

HTH
 

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

Back
Top