Re: Scheme conversion MySQL to PGSQL

From: "Michelle Konzack" <michelle(dot)konzack(at)tamay-dogan(dot)net>
To: pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: Scheme conversion MySQL to PGSQL
Date: 2017-12-24 21:20:38
Message-ID: f702baef3eb70d39d116ed711d9d3f54.squirrel@webmail.tamay-dogan.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hello Igal

Am 2017-12-24 hackte Igal @ Lucee.org in die Tasten:
> I agree with Andreas.  First create the tables, then create the
> indexes.  If you can copy the data before creating the indexes then
> you
> will probably save some time on all of the INSERTs.
>
> I am doing a similar thing migrating from SQL Server, and I am
> considering to publish an open source Migrator.
>
> Can you tell me about some of the data types that you had to change
> moving from MySQL to Postgres?

I convert only those four CREATE TABLE from mySQL to pgSQL which
is the forum pluging for squirrelmail.

auto_increment -> serial
int(NN) -> int
datetime -> timestamptz (attention: it is NOT timestamp)
longtext -> text

ENGINE=MyISAM hast to be removed.

This are things, which I found on the internet.

Greetings
Michelle

--
Michelle Konzack
00372-54541400

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Igal @ Lucee.org 2017-12-24 21:25:49 Re: Scheme conversion MySQL to PGSQL
Previous Message Michelle Konzack 2017-12-24 21:04:21 Re: Scheme conversion MySQL to PGSQL