Basically, I'm trying to selectively copy a table from one database to another. I have two different [Oracle] databases (e.g., running on different hosts) with the same schema. I'm interested in a efficient way to load Table A in DB1 with the result of running a select on Table A in DB2. I'm using JDBC, if that's relevant.
|
|
|
|
|
|
|
Use a database link, and use create table as select.
|
||
|
|
|
|
If the databases are from the same vendor they usually provide a native way to make a view of a table in another database. in which case, a "select into" query will do it no problem Oracle, for example, has the database link which works pretty well. Outside of that you are going to have to make a connection to each database and read in from one connection and write out to the other. There are tools like Oracle's ODI that can do the legwork, but they all use the same read in, write out model |
||
|
|
|
|
You may not even need to move that data. Maybe you can just select across the database link. |
||
|
|
