Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: How can tables from two different databases be linked
Quite simple really - just use a database link. Then you can write stuff like
SELECT a.name, b.salary FROM a person_at_first_database, b salary_at_second_database WHERE a.person_id = b.person_id, etc., etc.
![]() |
![]() |