Jump to content

To move from Mysql into Posgres?


mstdmstdd

Recommended Posts

  Hello,

If there is some tools to move data of related tables with data from Mysql into Posgres?

I know usefull option if to use dumping:

mysqldump --compatible=postgresql

But are there some pipelines for this?

If this pipeline is able to create tables in destination db by source db - that would be great!

Thanks!

Link to comment
Share on other sites

mysqldump produces SQL. psql executes SQL.

 

But first dump it to a file and verify it contains everything you need. If it doesn't then create a(nother) SQL file containing whatever additional commands you need, then execute that after the dumped SQL.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.