Displaying data from other databases

G

Guest

I have three databases that collect and process information. One generates
cost center usage percentages that are used in the other two. One of those
processes print services data collected from a mainframe source, the other
processes other mainframe collected information. I would like the user to be
able to access all the relevant information from one switchboard. I have no
problem connecting switchboard controls to objects in the database in which
I'm working, but I'm not sure what I have to do in order to do the same with
the other two databases. Can I get any tips and cautions on this?
 
K

Keith Wilby

Ray S. said:
I have three databases that collect and process information. One generates
cost center usage percentages that are used in the other two. One of those
processes print services data collected from a mainframe source, the other
processes other mainframe collected information. I would like the user to
be
able to access all the relevant information from one switchboard. I have
no
problem connecting switchboard controls to objects in the database in
which
I'm working, but I'm not sure what I have to do in order to do the same
with
the other two databases. Can I get any tips and cautions on this?

Sounds like a simple question of linking tables, are you familiar with that?

Keith.
 
G

Guest

linking tables will only complicate the intentional separation of the
databases, and would not suffice since the tables undergo much query
processing and are managed and handled through forms. It would be useful if I
could link to the forms in the other tables, but I don't know if that can be
done. I mean, I don't know how I would do that programmatically from the
"external" database.
 
K

Keith Wilby

Ray S. said:
linking tables will only complicate the intentional separation of the
databases,

So you want to process data from more than one file yet keep them all
separate? Not gonna happen without linked tables. What complication would
it cause?
and would not suffice since the tables undergo much query
processing

The performance hit on linked tables in my experience is negligible provided
that the FE is on the user's local drive.
and are managed and handled through forms. It would be useful if I
could link to the forms in the other tables, but I don't know if that can
be
done. I mean, I don't know how I would do that programmatically from the
"external" database.

To the best of my knowledge you can't call a form in one database from
another, but then why would you want to? I don't see any problem with
linking tables and using native forms in this type of scenario.

Keith.
 
G

Guest

OK, then I guess I have no alternative. I thought I could programmatically
open an external database and use it's objects. As it is, each database has
its own main form that does it's thing. However, they are all related in that
one database creates and transfers a table into the other two that is crucial
for their processing. I was hoping to provide one source from which to run
the processes for all three in the proper sequence.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top