Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Database Sharing

Status
Not open for further replies.

mbtransport

IS-IT--Management
Feb 9, 2008
32
US
I have looked over the thread of database sharing and they all seem to be out of date, so I thought I would start one for the newer software and go from there.

I have created a database and got it all ready to go, now I need to be able to share it across my network. I have seen people just place it on a shared drive and map users to the location, which is fine with me, I just didn't know if there were any better or different ways in which you can share the database allowing multiple users to interact with the database at the same time.
 
DO NOT DO THAT. Sorry to be alarmist. But you are very likely to corrupt your database and be very inefficient. IMO there is only one way to distribute access as multi user.


You can google this but basically.
1) Split the datbase into frontend and backend.
2) The backend contains only the tables, and that goes on the network.
3) All users get the front end. Forms, reports, modules, macros, queries
4) The front ends link to the back end tables

If you need two do updates to the forms and reports it is easy without worrying about the data.
 
Backup the db if you havn't done so

HTH << MaZeWorX >> "I have not failed I have only found ten thousand ways that don't work
 
Thanks for y'all's suggestions, of course I split the database as it seems it is the best route right now. One question I did run across was if I wanted to create a new report, do I create the report by changing the backend file or change the front end file and redistribute it?
 
mbtransport

We have many front end / back end access applications and I use some functionality and code which allows for auto updating of users' front end versions.

I've covered it to a certain extent in this thread:
But if you want any more information and / or advice on how to implement it, please let me know.

It's very, very useful - best piece of functionality we've ever deployed I think for managing this type of scenario.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top