I'm trying to code a query that needs to access two separate database connections and cant figure out how. I have my .sql file connected to connection: A, but i need to join information from connection: b to get all the information I need. I cant create a database link, which is the answer i'm seeing everywhere. The query will look something like this:
SELECT
a.ROW_ID,
a.ATTRIB_1,
b.Date2
From A.user.info a, B.super.info b
Where a.stat1 = b.stat1;