I mentioned using a split database, for multiple concurrent users. It's
essential if you want to avoid corruption, and in later versions (after
A2000, IIRC), it's also necessary if you want concurrent design and data
entry/edit activities. It's also extremely advisable, in earlier versions,
not to perform concurrent entry/edit use and design activities in the same
file by different users.
Here's a page with some references you might find useful on the subject:
http://www.accessmvp.com/JConrad/acc...splitting.html
There's a few more comments in-line below.
Again, HTH
Rob
"joeljkp" <(E-Mail Removed)> wrote in message
news:5A2B53B4-C1C3-422C-A97F-(E-Mail Removed)...
> Thanks for all the replies.
>
> The way it would work is that one of us would probably be in charge of the
> design (forms, reports, table design, etc.), and both of us would be
> adding
> and editing records. These changes would be happening to the same tables
> at
> the same time, but probably not to the same record.
Access will allow multiple user access to the same tables at the same time;
if, by some rare chance, two users edit the same record at the same time, a
warning will be displayed, with options to overwrite or drop changes.
>
> Someone mentioned using multiple files. One file would just have the
> tables,
> and the other would have the forms, etc. and could be given to the other
> person as a copy?
Precisely. The front-end file (with the forms, etc) can be edited by one
user, and the new version then copied to other users. There are methods
available for auto-updating of front-end files, but I suspect you're not
going to be needing them at this stage, and simply distributing a copy of
the updated front-end file will suffice for you at the moment. The
front-end contains links to the back-end data tables; these appear in the
tables section of the database window of the front-end file, as linked
tables.
>So the common database file (.mdb file or .accdb file)
> would be the remote data source, on a shared drive or something?
The back-end file is most commonly another .mdb or .accdb file, on either a
server or a shared drive. You can also use other database systems (eg. SQL
Server, or other ODBC databases) as the back-end, with an Access front-end.
> I'm an Access neophyte, I'm not familiar with how this works. Is there a
> help file
> on this somewhere?
See link near start of this post.
> I do have access to a central MySQL database server, but it has access
> restrictions (on-site vs. off-site, etc.) that make it less useful for
> this
> kind of thing.