Hello,
One can copy data from one source table to another the following maner,
Copy <cursor number> source table to <cursor number> destination table;
e.g SQL> COPY EMP TO 2.EMPLOYEES;
NOTE : THE DESTINATION TABLE MUST EXIST.
If you have toconnect toanother DB and copy from another table,
SQL> Connect DatabaseName 2 Username/Password;
SQL> Create TABLE <TABLENAME> ( COL1 DATATYPE, COL2 DATATYPE......);
SQL>COPY 1.TABLENAME TO TABLENAME2;
Let me know if this helped.
regards....
indoaryaan.