473,385 Members | 2,162 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Merging Data Dynamically

I have 4 Access databases, all with the same data model but different
data. I want to build a front end that brings all of the data in the
4 databases together into one.

Assuming my table of interest is called Removals, if I create linked
tables I end up with Removals1, Removals2, Removals3 and Removals4. I
could easily write a query to base a form or report upon to
concatenate all of these tables' data into one view. However, the
users take an empty database to use as a template for when a new
project is released so the view needs to be able to compensate for the
sudden addition of Removals5 and create a linked table for it.

Is this possible?

Regards

Karen
Dec 5 '07 #1
9 2162
On Wed, 5 Dec 2007 06:14:49 -0800 (PST), ka***********@hotmail.com
wrote:

This is a really bad idea. Rather you consolidate into one database,
that can handle multiple Projects.

-Tom.

>I have 4 Access databases, all with the same data model but different
data. I want to build a front end that brings all of the data in the
4 databases together into one.

Assuming my table of interest is called Removals, if I create linked
tables I end up with Removals1, Removals2, Removals3 and Removals4. I
could easily write a query to base a form or report upon to
concatenate all of these tables' data into one view. However, the
users take an empty database to use as a template for when a new
project is released so the view needs to be able to compensate for the
sudden addition of Removals5 and create a linked table for it.

Is this possible?

Regards

Karen
Dec 5 '07 #2
On 5 Dec, 14:35, Tom van Stiphout <no.spam.tom7...@cox.netwrote:
On Wed, 5 Dec 2007 06:14:49 -0800 (PST), karenjfran...@hotmail.com
wrote:

This is a really bad idea. Rather you consolidate into one database,
that can handle multiple Projects.

-Tom.
I have 4 Access databases, all with the same data model but different
data. I want to build a front end that brings all of the data in the
4 databases together into one.
Assuming my table of interest is called Removals, if I create linked
tables I end up with Removals1, Removals2, Removals3 and Removals4. I
could easily write a query to base a form or report upon to
concatenate all of these tables' data into one view. However, the
users take an empty database to use as a template for when a new
project is released so the view needs to be able to compensate for the
sudden addition of Removals5 and create a linked table for it.
Is this possible?
Regards
Karen- Hide quoted text -

- Show quoted text -
Thanks for the reply. I'm used to using databases like Oracle where,
of course, capacity is not an issue. Unfortunately here I only have
Access to use and I think multiple projects will soon overstep the
boundaries of its storage capability.

Karen
Dec 5 '07 #3
On Wed, 5 Dec 2007 06:38:34 -0800 (PST), ka***********@hotmail.com
wrote:

Access has a capacity of 2GB. Will you exceed that?
Note that before checking the size of the current databases, you
should compact them.

-Tom.

>On 5 Dec, 14:35, Tom van Stiphout <no.spam.tom7...@cox.netwrote:
>On Wed, 5 Dec 2007 06:14:49 -0800 (PST), karenjfran...@hotmail.com
wrote:

This is a really bad idea. Rather you consolidate into one database,
that can handle multiple Projects.

-Tom.
>I have 4 Access databases, all with the same data model but different
data. I want to build a front end that brings all of the data in the
4 databases together into one.
>Assuming my table of interest is called Removals, if I create linked
tables I end up with Removals1, Removals2, Removals3 and Removals4. I
could easily write a query to base a form or report upon to
concatenate all of these tables' data into one view. However, the
users take an empty database to use as a template for when a new
project is released so the view needs to be able to compensate for the
sudden addition of Removals5 and create a linked table for it.
>Is this possible?
>Regards
>Karen- Hide quoted text -

- Show quoted text -

Thanks for the reply. I'm used to using databases like Oracle where,
of course, capacity is not an issue. Unfortunately here I only have
Access to use and I think multiple projects will soon overstep the
boundaries of its storage capability.

Karen
Dec 5 '07 #4
ka***********@hotmail.com wrote in news:6970b4ad-b688-4648-969e-
f3**********@w34g2000hsg.googlegroups.com:
Unfortunately here I only have
Access to use
This is unlikely to elicit a great deal of sympathy in comp.databases.ms-
access.
and I think multiple projects will soon overstep the
boundaries of its storage capability.
Perhaps, if you could tell us the size of these projects, we could comment
on the likelihood of that happening.

--
lyle fairfield
Dec 5 '07 #5
On 5 Dec, 14:42, Tom van Stiphout <no.spam.tom7...@cox.netwrote:
On Wed, 5 Dec 2007 06:38:34 -0800 (PST), karenjfran...@hotmail.com
wrote:

Access has a capacity of 2GB. Will you exceed that?
Note that before checking the size of the current databases, you
should compact them.

-Tom.
On 5 Dec, 14:35, Tom van Stiphout <no.spam.tom7...@cox.netwrote:
On Wed, 5 Dec 2007 06:14:49 -0800 (PST), karenjfran...@hotmail.com
wrote:
This is a really bad idea. Rather you consolidate into one database,
that can handle multiple Projects.
-Tom.
I have 4 Access databases, all with the same data model but different
data. I want to build a front end that brings all of the data in the
4 databases together into one.
Assuming my table of interest is called Removals, if I create linked
tables I end up with Removals1, Removals2, Removals3 and Removals4. I
could easily write a query to base a form or report upon to
concatenate all of these tables' data into one view. However, the
users take an empty database to use as a template for when a new
project is released so the view needs to be able to compensate for the
sudden addition of Removals5 and create a linked table for it.
Is this possible?
Regards
Karen- Hide quoted text -
- Show quoted text -
Thanks for the reply. I'm used to using databases like Oracle where,
of course, capacity is not an issue. Unfortunately here I only have
Access to use and I think multiple projects will soon overstep the
boundaries of its storage capability.
Karen- Hide quoted text -

- Show quoted text -
They have a number of new, larger projects kicking off which I am led
to believe will generate more data than current projects. They want
something that is scaleable which is why I posted the question. I
guess I could split the database into 2, one for current rolling 12
month data and the other for historic data. I would still need to
bring them both together for overall reporting but could manage that
more easily.

Thanks for your input. If there is no way to do this sensibly I'll go
down the route of creating the two databases for historic reporting
purposes

Dec 5 '07 #6
Hate to disagree with an expert, but I run 4 or 5 back end DBs with the same
front end. Largely different sailing Clubs, so members, boats and moorings
and parking spaces used, but also use the same front end for friends, and
Rotary Club. Each DB has it's own menu so that irrelevent forms and reports
don't appear. All DBs have identical sets of tables and relationships, but
of course say the Rotary Club tables have no records in the boat and spaces
table. I have a form which you use to select which set of data you want,
then loop through all the tables to detach them from 1 back end database
then loop through all the tables to attach them for the new front end
database.
Works a treat.

Phil

"Tom van Stiphout" <no*************@cox.netwrote in message
news:sm********************************@4ax.com...
On Wed, 5 Dec 2007 06:14:49 -0800 (PST), ka***********@hotmail.com
wrote:

This is a really bad idea. Rather you consolidate into one database,
that can handle multiple Projects.

-Tom.

>>I have 4 Access databases, all with the same data model but different
data. I want to build a front end that brings all of the data in the
4 databases together into one.

Assuming my table of interest is called Removals, if I create linked
tables I end up with Removals1, Removals2, Removals3 and Removals4. I
could easily write a query to base a form or report upon to
concatenate all of these tables' data into one view. However, the
users take an empty database to use as a template for when a new
project is released so the view needs to be able to compensate for the
sudden addition of Removals5 and create a linked table for it.

Is this possible?

Regards

Karen

Dec 5 '07 #7
On Wed, 5 Dec 2007 06:50:49 -0800 (PST), ka***********@hotmail.com
wrote:
>They have a number of new, larger projects kicking off which I am led
to believe will generate more data than current projects. They want
something that is scaleable which is why I posted the question. I
guess I could split the database into 2, one for current rolling 12
month data and the other for historic data. I would still need to
bring them both together for overall reporting but could manage that
more easily.
Build the database on a few "small" projects in Access using a split
database arraignment (Data in one file, code and all your forms,
queries, etc. in another). When the data file grows too large, upsize
the data mdb file to SQL Server Express, or real SQL Server.

BTW, there are quite a number of "project management" programs already
out there (including Microsoft Project. You may want to take a quick
look at those before starting your own.
I half-remember some one telling me that Open Office has a project
management tool as well, but I can't say as I've ever looked.

---
Please Post Any Replies To This Message Back To the Newsgroup.
There are "Lurkers" around who can benefit by our exchange!
Dec 6 '07 #8
On Wed, 5 Dec 2007 22:39:21 -0000, "Phil Stanton"
<ph**@stantonfamily.co.ukwrote:

The way I look at it is this: if the data is REALLY separate, I would
not mind multiple back-ends. That seems to be the case in your
situation. But if you had told me your Sailing Clubs are all owned by
one company, which would sometimes want to run reports across the
whole enterprise, or send out a mailing that should not have dups (and
people can be member of several clubs), or lower all prices by 5%, you
can see where multiple back-ends would quickly become unmanageable
whereas an integrated one would be soo nice.
Also, the OP hinted at writing a union query to get the records for
Removals1, Removals2, Removals3 and Removals4, and then later come
back and add a new Removals5 to the query. That's where I say "really
bad idea".

-Tom.

>Hate to disagree with an expert, but I run 4 or 5 back end DBs with the same
front end. Largely different sailing Clubs, so members, boats and moorings
and parking spaces used, but also use the same front end for friends, and
Rotary Club. Each DB has it's own menu so that irrelevent forms and reports
don't appear. All DBs have identical sets of tables and relationships, but
of course say the Rotary Club tables have no records in the boat and spaces
table. I have a form which you use to select which set of data you want,
then loop through all the tables to detach them from 1 back end database
then loop through all the tables to attach them for the new front end
database.
Works a treat.

Phil

"Tom van Stiphout" <no*************@cox.netwrote in message
news:sm********************************@4ax.com.. .
>On Wed, 5 Dec 2007 06:14:49 -0800 (PST), ka***********@hotmail.com
wrote:

This is a really bad idea. Rather you consolidate into one database,
that can handle multiple Projects.

-Tom.

>>>I have 4 Access databases, all with the same data model but different
data. I want to build a front end that brings all of the data in the
4 databases together into one.

Assuming my table of interest is called Removals, if I create linked
tables I end up with Removals1, Removals2, Removals3 and Removals4. I
could easily write a query to base a form or report upon to
concatenate all of these tables' data into one view. However, the
users take an empty database to use as a template for when a new
project is released so the view needs to be able to compensate for the
sudden addition of Removals5 and create a linked table for it.

Is this possible?

Regards

Karen
Dec 6 '07 #9
You'r right, Tom

All information for the various organisations is completely separate. The
only tables in the FE are paths to where the data is held for each Club /
Organisation. Also I have worked a bit of a crafty move by having a table
that shows or hided certain fields on forms that are not relevant to that
organisation. So for example, I show the wedding anniversary field on my
friend's DB but not on the Yacht Club DB

Phil
"Tom van Stiphout" <no*************@cox.netwrote in message
news:a2********************************@4ax.com...
On Wed, 5 Dec 2007 22:39:21 -0000, "Phil Stanton"
<ph**@stantonfamily.co.ukwrote:

The way I look at it is this: if the data is REALLY separate, I would
not mind multiple back-ends. That seems to be the case in your
situation. But if you had told me your Sailing Clubs are all owned by
one company, which would sometimes want to run reports across the
whole enterprise, or send out a mailing that should not have dups (and
people can be member of several clubs), or lower all prices by 5%, you
can see where multiple back-ends would quickly become unmanageable
whereas an integrated one would be soo nice.
Also, the OP hinted at writing a union query to get the records for
Removals1, Removals2, Removals3 and Removals4, and then later come
back and add a new Removals5 to the query. That's where I say "really
bad idea".

-Tom.

>>Hate to disagree with an expert, but I run 4 or 5 back end DBs with the
same
front end. Largely different sailing Clubs, so members, boats and moorings
and parking spaces used, but also use the same front end for friends, and
Rotary Club. Each DB has it's own menu so that irrelevent forms and
reports
don't appear. All DBs have identical sets of tables and relationships, but
of course say the Rotary Club tables have no records in the boat and
spaces
table. I have a form which you use to select which set of data you want,
then loop through all the tables to detach them from 1 back end database
then loop through all the tables to attach them for the new front end
database.
Works a treat.

Phil

"Tom van Stiphout" <no*************@cox.netwrote in message
news:sm********************************@4ax.com. ..
>>On Wed, 5 Dec 2007 06:14:49 -0800 (PST), ka***********@hotmail.com
wrote:

This is a really bad idea. Rather you consolidate into one database,
that can handle multiple Projects.

-Tom.
I have 4 Access databases, all with the same data model but different
data. I want to build a front end that brings all of the data in the
4 databases together into one.

Assuming my table of interest is called Removals, if I create linked
tables I end up with Removals1, Removals2, Removals3 and Removals4. I
could easily write a query to base a form or report upon to
concatenate all of these tables' data into one view. However, the
users take an empty database to use as a template for when a new
project is released so the view needs to be able to compensate for the
sudden addition of Removals5 and create a linked table for it.

Is this possible?

Regards

Karen

Dec 6 '07 #10

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

Similar topics

1
by: Neds | last post by:
I'm having a major problem with threads. I have a main application that dynamically loads plugins. One of the plugins receives SMS messages in a seperate thread. When an SMS comes in I need to...
2
by: Klatuu | last post by:
Whew, I've struggled my way through figuring out how to use XML to transport data..now I can imagine what having a baby is like :) But, I'm stuck now. I generate the XML (single table, no...
3
by: Patrick | last post by:
I have got 2 XML documents, both of which conform to the same XSD Schema, which define possible optional elements. The 2 XML documents contain 2 disjoint set of XML elements. What is the best,...
2
by: Emmett Power | last post by:
Hi, I have an Access table with a number of records which refer to the same person but with data in different fields. So for example the table would look like this: Name..............Field...
1
by: svdh | last post by:
I have posed a question last saturday and have advanced alot in the meantime. But I am still not there Problem is that I try to merging various fields from various tables in one document in Word...
15
by: PRadyut | last post by:
In this code it throws a runtime error on a code access violation . On the line z->data=p->data; while (p!=NULL && q!=NULL) { if (*s==NULL) {
3
by: Jim Adams | last post by:
My ASP.Net (VB.Net) app needs to display a filled in form to a web user from the following: a) read a form files dynamically from disk (e.g. form1.html) b) read its corresponding XML file (e.g....
1
by: Jim Adams | last post by:
My ASP.Net (VB.Net) app needs to display a filled in form to a web user from the following: a) read HTML form files (not ascx) dynamically from disk (e.g. form.html) b) read its corresponding...
1
by: prasathrk | last post by:
Hi I am having the following requirement. my recordset is as below, col1 col2 col3 col4 ------------------------------- a1 a2 a3 a4 b1 b2 b3 b41
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
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,...
0
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...

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.