I tried several ways through internet and scripts to use MySQL dump "xxx.sql" and ORACLE dump "xxx.dump" to postgresql database. Nothing worked for me. Kindly anyone suggest me to do this.

I want to import xxx.dump from ORACLE and xxx.sql from MySQL to postgresql database.

link|improve this question

1  
How did you create your "xxxx.dump" file from Oracle. Did you use export or expdp or rdbms.get_ddl? – Benoit Mar 24 '11 at 10:16
feedback

5 Answers

up vote 5 down vote accepted

Don't expect that to work without editing. Maybe a lot of editing.

mysqldump has a compatibility argument, -compatible=name, where "name" can be "oracle" or "postgresql", but that doesn't guarantee compatibility. I think server settings like ANSI_QUOTES have some effect, too.

You'll get more useful help here if you include the complete command you used to create the dump, along with any error messages you got instead of saying just "Nothing worked for me."

link|improve this answer
feedback

The fastest (and most complete) way I found was to use Kettle. This will also generate the needed tables, convert the indexes and everything else. The mysqldump compatibility argument does not work.

The steps:

  1. Download Pentaho ETL from http://kettle.pentaho.org/ (community version)

  2. Unzip and run Pentaho (spoon.sh/spoon.bat depending on unix/windows)

  3. Create a new job

  4. Create a database connection for the MySQL source (Tools -> Wizard -> Create database connection)

  5. Create a database connection for the PostgreSQL source (as above)

  6. Run the Copy Tables wizard (Tools -> Wizard -> Copy Tables)

  7. Run the job

link|improve this answer
feedback

It is not possible to import an Oracle (binary) dump to PostgreSQL.

If the MySQL dump is in plain SQL format, you will need to edit the file to make the syntax correct for PostgreSQL (e.g. remove the non-standard backtick quoting, remove the engine definition for the CREATE TABLE statements adjust the data types and a lot of other things)

link|improve this answer
feedback

You could potentially export to CSV from MySQL and then import CSV into PostgreSQL.

link|improve this answer
feedback

I have tried numerous solutions and have found that due to the fact that MySQL doesn't enforce many rules and is relatively lax in the rules it does enforce, migration from MySQL to PostgreSQL was extremely painful. Especially since I needed to migrate around 4 million rows in one table, whose schema has organically grown over time.

The closest I've come to a perfect solution that entails as little human intervention as possible is WhiteFang34's solution (Thanks!) of exporting to CSV and importing back. Of course there's the usual bits and pieces that you need to consider (such as NULLs, triggers, indexes and the like.) Especially useful was the fact that the export can be restricted by ranges when doing the SELECT (which allows for easy incremental migration.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.