lightning Posted March 21, 2007 Share Posted March 21, 2007 Hello, Is there a free downloadable postgresql to oracle migration tool? Thanks in advance! Quote Link to comment Share on other sites More sharing options...
lightning Posted March 21, 2007 Author Share Posted March 21, 2007 Hello, Is there a free downloadable postgresql to oracle migration tool? Thanks in advance! I already have a database in postgresql. I use the phpPgAdmin web-based GUI tool to access the postgresql database. Now, I need to migrate this postgresql database to oracle database. What migration tool is free of charge or has a trial period for this purpose. After, migration, I think I can use the Oracle's SQL Developer Tool to access the data within the Oracle Database for a trial period of 30 days. Quote Link to comment Share on other sites More sharing options...
phporaclehosting Posted January 3, 2008 Share Posted January 3, 2008 sql developer is free now. There are a few ways of importing data into oracle. you can recreate the tables, indexes triggers etc and then dump the sql data out of the database and then cat this data into sqlplus like cat data.sql | sqlplus scott@tiger however i have done this before from postgress, and know that a simple ampersand can screw everything up. so you probably want to do something like: cat data.sql | sed 's/&/&/g' > data2.sql You can also use a proprietry tool like toad to do the import. How much data are you looking at? there are tricks like dividing up your data in to sections and starting many sqlplus instances for each set of data Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.