Jump to content

Postgresql To Oracle Migration Tool


Recommended Posts

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.

Link to comment
Share on other sites

  • 9 months later...

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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.