Is there a way to query two databases (in a single query) in Oracle SQL Developer?
I'm not very familiar with Oracle -- aside from standard CRUD syntax at any rate.
I'm trying to do an insert into an Oracle table from a SQL Server table. Would like to do something like this:
INSERT INTO OracleDB.table (field1, 2, ...)
SELECT ... FROM SQLServerDB.schema.table
I've got (working) connections created for both databases in Oracle SQL Developer.
Thanks
--EDIT--
I have no admin privileges to the databases themselves. (Cannot create linked servers, etc.)