Quote:
|
Originally Posted by bfmaclean
I have 4 databases (dbA, dbB, dbC, dbD) that are all on the same schema (s1). When connected to database dbA I want to be able to get data out of dbB.
|
A schema is a part of a database, not the other way around. If I understand you correctly, here's what you've got:
Code:
create database dbA ... ;
connect to dbA ...;
create table s1.tbl_hours ... ;
create database dbB ... ;
connect to dbB .. ;
create table s1.tbl_minutes ...;
select * from s1.tbl_hours;
If that's the case you will need to read about federated databases. Search this forum for that topic, which has been discussed umpteen times.