Can I query one database from another
I have several databases on the same server (11g) and I want to retrieve data from DB2 while I am logged in to DB1.
For example something like this:
.>> oraenv
>>DB1
>sqlplus / as sysdba
>SELECT * FROM TABLE1, DB2.SCHEMA1.Table1:
Can I do that in Oracle?
0