Re: Scheme conversion MySQL to PGSQL - Mailing list pgsql-general

From Igal @ Lucee.org
Subject Re: Scheme conversion MySQL to PGSQL
Date
Msg-id 1e666e62-f8f5-0a8d-db37-a98863aeb95d@lucee.org
Whole thread Raw
In response to Re: Scheme conversion MySQL to PGSQL  (Andreas Kretschmer <andreas@a-kretschmer.de>)
Responses Re: Scheme conversion MySQL to PGSQL
List pgsql-general
On 12/24/2017 10:18 AM, Andreas Kretschmer wrote:
On 24 December 2017 18:52:39 CET, Michelle Konzack <linux4michelle@tamay-dogan.net> wrote:
I try to convert a Database scheme from mySQL to pgSQL and have
problems  with the line:
    KEY post_date     (post_date)

and later probably with the lines
    UNIQUE KEY user   (stat_login)
That's just indexe. Create them later with create index ...

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?

Thanks,

Igal Sapir
Lucee Core Developer
Lucee.org

pgsql-general by date:

Previous
From: Melvin Davidson
Date:
Subject: Re: Scheme conversion MySQL to PGSQL
Next
From: "Michelle Konzack"
Date:
Subject: Re: Scheme conversion MySQL to PGSQL