473,659 Members | 2,872 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Split database (single front end w/ multiple backends)

Hello all...

I am trying to develop a database that could be duplicated many times
over with different data (separated by project) in each database, but
the same front end information. I was wondering if anyone knew of a
way to have multiple backends and just one front end, to ease updates.

Thanks,
Therese
Nov 12 '05 #1
3 8324
Check at http://www.mvps.org/access/tables/tbl0009.htm for ideas on how to
point the table links in your database to a different back end.

HTH
- Turtle

"Therese A. Sorna" <ta*****@yahoo. com> wrote in message
news:be******** *************** ***@posting.goo gle.com...
Hello all...

I am trying to develop a database that could be duplicated many times
over with different data (separated by project) in each database, but
the same front end information. I was wondering if anyone knew of a
way to have multiple backends and just one front end, to ease updates.

Thanks,
Therese

Nov 12 '05 #2
Except in very unusual circumstances, it is simpler and easier if you put
all the information in one back-end database, with the records identified by
project. One of the unusual circumstances might be where you keep data for
different clients, the clients also have access, and the data is "company
confidential".

It's likely, if there aren't some unusual circumstances, that one day you
might want to do some comparative analysis, and that will be far easier if
you have all the information in one database.

If you can't combine the data, you've had one reference on code to select
and relink tables. Another will be found in the Solutions.MDB sample
database from Microsoft -- it comes on the install disks with Access 97 and
earlier, and will be installed in the Samples subfolder of the Office folder
of the folder hierarchy where you installed Office or Access; for Access
2000 and later, download from
http://msdn.microsoft.com/library/en...ml/bap2000.exe. It's not
for exactly the purpose you describe, but it'll be easy to adapt the code.

Larry Linson
Microsoft Access MVP

Larry Linson
Microsoft Access MVP
"Therese A. Sorna" <ta*****@yahoo. com> wrote in message
news:be******** *************** ***@posting.goo gle.com...
Hello all...

I am trying to develop a database that could be duplicated many times
over with different data (separated by project) in each database, but
the same front end information. I was wondering if anyone knew of a
way to have multiple backends and just one front end, to ease updates.

Thanks,
Therese

Nov 12 '05 #3
ta*****@yahoo.c om (Therese A. Sorna) wrote in
<be************ **************@ posting.google. com>:
I am trying to develop a database that could be duplicated many
times over with different data (separated by project) in each
database, but the same front end information. I was wondering if
anyone knew of a way to have multiple backends and just one front
end, to ease updates.


Years ago, I had a client who was a management company that ran 25
or so parking garages in NYC. They had an old dBase II program that
had separate data files for each garage. When I built a replacement
Access application, I put all the garages in one MDB and simply put
a GarageID in the Customer table (the top-level table). I then made
choosing the Garage the first step in opening the application, but
also allowed them to choose ALL GARAGES.

If the projects have the exact same data structure (and they must
if a single front end can be used for all of them), then include a
table for Projects and put a ProjectID in the table at the top of
your data structure. In the long run, you will be glad you did it.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 12 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
4252
by: Mike Wiseley | last post by:
We recently converted our department wide shared Access97 database to Access2K. We used to be able to open various reports in design mode and make changes to the design (or create new reports) even while other users in this shared database might be using other, unrelated reports. Now, in Access2k, it appears that whenever you do not have exclusive access, you cannot make any design changes to reports. It seems that the presence of any...
51
5069
by: John Baker | last post by:
Hi: Some time ago I developed a program in Access, and separated the database and the program itself (using the normal access tools).We have the db on our server and the programin the desktop system. I have modified the program a number of times, and now find that I need to change the DB slightlt. This appears to require that I REMERGE the data base and program, and I have no idea how to do that. Can someone give me some pointers,...
12
9893
by: Corey Burnett | last post by:
I have a client that has a split database (front-end/back-end). They are also using Access security - MDW file. The front end MDE file, the back end MDB file, and the MDW file are all located on a shared folder on the file server. They have two populations of users - local and remote. *ALL* users currently get to the system via a Citrix login. They log in to Citrix and get a Citrix desktop. Then they start the application via a...
12
1731
by: Gary | last post by:
I have a backend Database with just one main table in it (no form/queries etc) The network pc's have the front end database (with all the forms, queries,macros etc). These front ends are linked to the table belonging to the backend database. Records have been entered since January this year. However, as soon as the size of the backend database exceeded 1 gigabyte I got concerned that it would possibly encounter a corruption of the data...
7
4557
by: DanZaMan | last post by:
Just a query about how clever access is, I'm using access 97. When using a "split" database with a separate front-end and with the data file on a separate server on the network how does access handle the data; Does it transfer all the data across the network and process it locally on the front end or does it process it on the server the data file is held on? If I put my queries in the access data file on the server would this result...
3
1674
by: Nubs | last post by:
I have read that using the database splitter is good because it allows multiple users to access the database simultaneously. However, is it trully necessary to have multiple FE MDE files or can everyone just use a single MDE file that is located on the network drive?
3
2469
by: najimou | last post by:
Hi everyone I will be having a split database, running on 2 computers via mapped drive. computer "A" will have one front end and the back end located in c: \mydatabse 2 tables have links to many images stored as c:\mydatabse\images \images.jpg so computer A has no problem accessing the picture
6
1958
by: Stan | last post by:
I am working on a database in ACCESS 2003. This is a simple DB with only one table. I have split the DB so I can upgrade and debug the front end before installing on my clients' computer. I used the ACCESS splitter utility and everything appeared to go OK. If I run "Copy of DB_be.mdb" I see only the table, not the Queries or Forms. When I run the front end "Copy of DB.mdb" I see the Queries and Forms. but, I also see the Table. If I...
8
2221
by: John Google | last post by:
Hi, I've been asked to amend an Access 2002 DB that has been used by users using the MDE version. I have, what seems to be the original MDB version containing all the front end stuff but, by now, the tables are way out of date. They want me to make some changes to the database and keep their current data..
0
8427
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8332
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8746
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8627
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7356
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6179
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4175
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4335
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1975
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.