Re: [pgsql-advocacy] MySQL to PostgreSQL, was ENUM type

Поиск
Список
Период
Сортировка
От Chris Travers
Тема Re: [pgsql-advocacy] MySQL to PostgreSQL, was ENUM type
Дата
Msg-id 42E85C04.7070703@travelamericas.com
обсуждение исходный текст
Ответ на Re: [pgsql-advocacy] MySQL to PostgreSQL, was ENUM type  (Christopher Kings-Lynne <chriskl@familyhealth.com.au>)
Ответы Re: [pgsql-advocacy] MySQL to PostgreSQL, was ENUM type  ("Jim C. Nasby" <decibel@decibel.org>)
Список pgsql-general
Christopher Kings-Lynne wrote:

>> So far, the checklist I can see includes:
>> *  Maintaining conversion scripts
>
>
> What I think we need is a C program that dumps directly from MySQL
> into PostgreSQL sql.
>
> ie. Take the mysqldump source code and just modify its output.
>
> Will inherit the MySQL license though :(
>

It then occurred to me that a better answer would be something like a
DBI perl script that has modules for storing important queries for
various SQL database servers, and outputting the format in PostgreSQL
syntax.  That way one can have a general conversion toolkit that can be
easily expanded and could also be used in porting Oracle, MS SQL,
SQL-Lite, and other databases to PostgreSQL.  In this way, you could
also avoid the MySQL license even by MySQL AB's weird interpretation of
derivative works.

This way one could also have fairly smart logic in the conversion as
well.  Gee, your max unsigned bigint is over our bigint limit, lets use
numeric instead or hmm... you have an ENUM type here.  Lets use a
VARCHAR() with a constraint for now.  This logic could be easily tweeked
by a decent programmer.  I think that such a program should be somewhat
trivial to write for at least tables and data definitions.  Triggers,
functions, etc. would be more difficult.  But I think it is reasonable
to expect that functions might have to be manually ported in most
circumstances.

Best Wishes,
Chris Travers

> Chris
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: don't forget to increase your free space map settings
>
>


В списке pgsql-general по дате отправления:

Предыдущее
От: "Stefan 'Kaishakunin' Schumacher"
Дата:
Сообщение: Re: GUID for postgreSQL
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [pgsql-advocacy] MySQL to PostgreSQL, was ENUM type