Hi,
I have two different Oracle databases, one each for Region A and Region B. Everything else is identical about these databases except their name. What I'm trying achieve is, to run the same query on these two databases and use the results from each to populate a single Datagrid. Is this possible? FWIW, I'm using Data Access Application Block for all data access.
An example query would be something like this:
SELECT ColumnA, ColumnB FROM (RegionA_DB's TableA)
SELECT ColumnA, ColumnB FROM (RegionB_DB's TableA)
although it may not be this simple as the
connection string is different for both DBs. AIso, UNION doesn't seem possible here, but please correct me if it is.
Thank you.