Be sure to review our Idea Submission Guidelines for more information!
Submission Guidelines
So it takes while to download data from in-db (say oracle table) and load it to another...
Why not build an additional in-db tool to migrate data without downloading to local...
Oracle has this capability and here is the Syntax;
COPY Command Syntax
COPY {FROM database | TO database | FROM database TO database} {APPEND|CREATE|INSERT|REPLACE} destination_table [(column, column, column, ...)]
USING query
where database has the following syntax:
username[/password]@connect_identifier
Copies data from a query to a table in a local or remote database. COPY supports the following datatypes:
CHAR DATE LONG NUMBER VARCHAR2
Example;
COPY FROM HR/your_password@BOSTONDB - TO TODD/your_password@CHICAGODB - CREATE NEWDEPT (DEPARTMENT_ID, DEPARTMENT_NAME, CITY) - USING SELECT * FROM EMP_DETAILS_VIEW
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.