I'm trying to copy rows from one Oracle table to another. Since I'm used to Microsoft's BI tools, I tried creating an SSIS project for this, but it's been an uphill battle.
We also have Toad Data Point, which is the tool that I use to query Oracle databases.
Since the only difference between the source and destination table is the table name, is it possible to create a job, to run daily, that will copy data from one Oracle table to another?
I forgot to mention that the tables are not in the same database.
There are a number of ways to copy data from one Oracle database to another - database links, DataPump, exp/imp (generally desupported, but still works), SQL*Loader load of CSV export, etc.
The example below creates a daily job that pulls data in the source database across a database link into the destination.
You can use the
USER_SCHEDULER_JOBSview to monitor execution of the job.