Thread: mysql to pgsql

mysql to pgsql

From
"K. Suresh"
Date:
Hello,

I have a database application with Java and PHP clients. I used mysql
with 64 tables. Now, we have decided to use pgsql. Please suggest the
migration procedure.

Thanks.

Suresh

Re: mysql to pgsql

From
Gerd Terlutter
Date:
K. Suresh wrote:
> Hello,
>
> I have a database application with Java and PHP clients. I used mysql
> with 64 tables. Now, we have decided to use pgsql. Please suggest the
> migration procedure.
>
> Thanks.
>
> Suresh
>

Hi all,
for a few weeks i had the same problem. I found the attached script, doc
is online :
http://ns2.ziet.zhitomir.ua/~fonin/projects/my2pg/my2pg_man.html

shortcut :
mysqldump -u username --password=mypasswd databasetodump [tables]
|(pipe) my2pg.pl>dumpfile
dumpfile the script that you can use to create tables in an already
existing PG-dbase. If you need functions in PG (e.g. you need enum in
mysql) you have to read the file as PG-superuser and not as owner of the
db. The my2pg.pl script creates Makefile and three libtypes.*. You need
a specific pg-libary on your system, but i've forgotten the name. If you
convert as superuser, don't forget to give the privs to the user (grant
all on 'tablename' to 'user). do the same for *_seq-tables.
hope it helps
Gerd
--
--------------------------------------------------------
# Gerd Terlutter        | Mueller+Blanck Software GmbH #
# gerd@MplusB.de        | Gutenbergring 38             #
# gerd.terlutter@web.de | D-22848 Noderstedt           #
# tel:0171/6992579      | tel:+49 40 500 171-1         #
# Buero:040/500171-17   | fax:+49 40 500 171-71        #
--------------------------------------------------------


Attachment

Re: mysql to pgsql

From
CoL
Date:
http://www.google.com/search?q=mysql2psql&sourceid=mozilla-search&start=0&start=0&ie=utf-8&oe=utf-8
->
http://gborg.postgresql.org/project/mysql2psql/projdisplay.php

C.

K. Suresh wrote, On 8/28/2003 6:41 AM:

> Hello,
>
> I have a database application with Java and PHP clients. I used mysql
> with 64 tables. Now, we have decided to use pgsql. Please suggest the
> migration procedure.
>
> Thanks.
>
> Suresh