client/server setup

J

J. Freed

I'd like to create a client/server application where multiple users can
read/write access a single table, each user accessing a unique portion of the
table. If I create a link to the table in each copy of the client database,
would there be a problem with multiple simultaneous users editing the table?
TIA....
 
B

Bernard Peek

J. said:
I'd like to create a client/server application where multiple users can
read/write access a single table, each user accessing a unique portion of the
table. If I create a link to the table in each copy of the client database,
would there be a problem with multiple simultaneous users editing the table?
TIA....

Are you sure that what you are looking for is a client/server system,
that's a specific technical term with limited applicability to Access.

However if you create a query on the server for each user and restrict
each query to one person's data, you can link each client to a different
query. This could get very complex if you have many users. It's possible
to simplify this by using some VBA code, provided you have sufficient
VBA skills.
 
J

John W. Vinson

I'd like to create a client/server application where multiple users can
read/write access a single table, each user accessing a unique portion of the
table. If I create a link to the table in each copy of the client database,
would there be a problem with multiple simultaneous users editing the table?
TIA....

There is a limit of 255 simultaneous users accessing a database. In practice,
things can get dicey if you have more than 30 or 40 users *SIMULTANEOUSLY
EDITING* (not just viewing) the database, and you will have problems if two
users try to simultaneously edit the same record.

How many "multi" users are you talking about?
Are they all on the same fast stable LAN, or are you talking about one user
from Tokyo and another from Poughkeepsie?

More info please!
 

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

Similar Threads

client/server setup 2
MultiSelect List Box (pre Access 2007) 3
creating new database 29
Convoluted many-to-many relationship 9
Client/Server Access application 4
Questionnaire 4
Table Design 1
Access Dcount (multiple criteria) 3

Top