We can use SQL*Plus COPY for transferring data between Oracle databases. It uses a detailed syntax. Example
COPY FROM my_user/password@source_db TO other_user/paswword@target_db
REPLACE your_table -
USING SELECT id, name, degree FROM my_table;
Optimizing performance is crucial when transferring thousands or tens of thousands of records using SQL*Plus COPY
.
If there are no memory limitations, follow these best practices to speed up the process.
Fetching more rows per request reduces the number of round trips to the database.
SET ARRAYSIZE 5000 # Fetching more rows per request reduces the number of round trips to the database.
SET COPYCOMMIT 5000 # Committing after each batch prevents excessive undo and reduces locks.
# Disable unnecessary output may speed up execution
SET RECSEP OFF
SET TERMOUT OFF
SET FEEDBACK OFF