Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Need advice on transferring data from a remote database

Need advice on transferring data from a remote database

From: <alex_n_at_my-dejanews.com>
Date: Fri, 24 Jul 1998 10:44:24 GMT
Message-ID: <6p9oi8$je2$1@nnrp1.dejanews.com>


I need to transfer some data from the remote database into my local one. Using the COPY command in the SQL*Plus is not an option. I have to use a procedure with the following code:
 for rec in (select * from table1_at_linkToRemoteDB) loop    <do something with rec.*>
 end loop;
This works fine, but it is too slow. Maybe anyone knows how can I speed up the transfer, maybe I should not use a cursor? Any comments are very wellcome.

Thank you,
Alex

-----== Posted via Deja News, The Leader in Internet Discussion ==----- http://www.dejanews.com/rg_mkgrp.xp Create Your Own Free Member Forum Received on Fri Jul 24 1998 - 05:44:24 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US