Hi,for single table transfers I find nothing
beats the COPY command in SqlPlus - you can pre-set the COMMIT size and keep rollback segment use minimal (using SET COPYCOMMIT=n ), it gives immediate feedback and runs quite fast..Syntax, in general is:
Code:
COPY from username/password@thisdatabase to username/password@thatdatabase
CREATE ( or INSERT, APPEND, REPLACE)
Table_name_at_thatdatabase
Using Select * from ......
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.