sandeep, September 20, 2004 - 9:18 am UTC
using COPY from PL/SQL
sandeep, September 20, 2004 - 9:24 am UTC
Tom,
we need to do certain data cleansing operations on the data fetched using copy before it can be loaded to final table. DB link would have helped but it is not allowed due to some reason.
we also need to schedule data copying from one database to other on a weekly basis.
SO Is there any way we can execute COPY command from a PL/SQL procedure or package ?
September 20, 2004 - 10:37 am UTC
you can implement copy -- copy is a sqlplus command.
to do your own copy, you bulk collect and bulk insert.
copy, the command, is a SQLPlus command only. you would use sqlplus to invoke it.