Bonediggler1
Technical User
Hi-
I am wondering how to query one Oracle server from another. I used to do this via OPENQUERY in T-SQL, but am not sure how to do it in Oracle. I do not have admin rights to either, so I can't create any db objects. The syntax is roughly:
SELECT * FROM
ORA1.DB1 A INNER JOIN
(SELECT BLAH FROM ORA2.DB1) B
ON A.BLAH = B.BLAH
Thank you!!
I am wondering how to query one Oracle server from another. I used to do this via OPENQUERY in T-SQL, but am not sure how to do it in Oracle. I do not have admin rights to either, so I can't create any db objects. The syntax is roughly:
SELECT * FROM
ORA1.DB1 A INNER JOIN
(SELECT BLAH FROM ORA2.DB1) B
ON A.BLAH = B.BLAH
Thank you!!