linking vs importing

shrndegruv

Registered User.
Local time
Today, 07:45
Joined
Sep 8, 2004
Messages
58
Hey all

Lets say 2 people are each using a copy of an access application. Two people means data entry goes faster. Is it possible, when data entry is complete, to combine the results?

To do this, would one user import the other's database?

Also, is this conception of linking correct?: If I were to create tables, and only tables, and then save it as one mdb file, I could create a seperate mdb file that contained the queries,forms,reports,whatnot, by linking the second mdb to the first?

Thanx
 
Many people separate their applications into two MDB files. One a Front End w/ forms, queries, reports and modules. Two a Back End with nothing but tables.

You then link the front end to the back end tables. You can have multiple Front Ends linked to the same back end (maybe sitting on a server). This allows you to have multiple people working and further allows you to facilitate changes to the front end without stopping everybody. You can always replace the front end w/ changes. This can sit on individual workstations.

I usually write a routine to automatically link the tables for the user, but it can be done manually.
 
to use multiple front ends for one back end, how do you set it up? Does the back-end have to actually go on a server, or can it just be a networked computer?
 
It can be on any shared resource, server or computer being shared. You really would have one front end, you just put separate copies on each workstation that needs to run the application. Then, you can manually link the tables from the backend.

Also, you may want to map a drive to the shared computer.
 

Users who are viewing this thread

Back
Top Bottom