Is there a way to copy several tables from an oracle database to another oracle database?
I don't want to have to list all the table separately in a workspace given that I have to deal with approximately one hundred tables
Thanks
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
This is one of our ETL jobs in FME. It takes 50 minutes to run. Is there a better way to move data from one database to another (like sql script)? This is currently from oracle to oracle, but eventually am moving the output database to SQL server.
Worth noting is that the reprojector and attribute manager isn't needed.
This is one of our ETL jobs in FME. It takes 50 minutes to run. Is there a better way to move data from one database to another (like sql script)? This is currently from oracle to oracle, but eventually am moving the output database to SQL server.
Worth noting is that the reprojector and attribute manager isn't needed.
If you need it to execute much faster, you should look into making a direct connection between the two Oracle instances (e.g. use Database Link) and use regular SQL statements to copy the table contents. You can of course use FME for this. This method is usually much, much faster than loading the data into FME before writing it back again.