Re: Transfering data from postgresql to MySQL

2004-10-21 Thread Martijn Tonies
> now I managed to dump table schema with pg_dump. However, > is there any schema converting tool available? I don't want to edit > each table schema to make it mysql-compliant. Download yourself a trial of Database Workbench at www.upscene.com It has a "Schema Migrator" tool that allows you to

Re: Transfering data from postgresql to MySQL

2004-10-21 Thread Patrick Hsieh(謝洪恩)
18 Oct 2004 18:08:24 +0800, èææ Patrick Hsieh wrote: > > > > I am planing to transfer data from postgresql to mysql. Is there any > > useful tools, scripts or utilities to achieve this? > > pg_dump > > First dump the schema, edit that until you have something MySQL

Re: Transfering data from postgresql to MySQL

2004-10-18 Thread Karam Chand
t; Patrick Hsieh wrote: > > > > I am planing to transfer data from postgresql to > mysql. Is there any > > useful tools, scripts or utilities to achieve > this? > > pg_dump > > First dump the schema, edit that until you have > something MySQL > unders

Re: Transfering data from postgresql to MySQL

2004-10-18 Thread Jochem van Dieten
On Mon, 18 Oct 2004 18:08:24 +0800, èææ Patrick Hsieh wrote: > > I am planing to transfer data from postgresql to mysql. Is there any > useful tools, scripts or utilities to achieve this? pg_dump First dump the schema, edit that until you have something MySQL understands. Then dump

Transfering data from postgresql to MySQL

2004-10-18 Thread Patrick Hsieh(謝洪恩)
Hello list, I am planing to transfer data from postgresql to mysql. Is there any useful tools, scripts or utilities to achieve this? Any infomation is highly appreciated! --- Patrick Hsieh(èææ) <[EMAIL PROTECTED]> MSN: [EMAIL PROTECTED] | ICQ: 97133580 Skype: pahud_at_pahud.net

Re: PostgreSQL to MySQL

2001-10-05 Thread Ken Menzel
Hi Jani and Owen, Owen if you are dumping the data using pg_dump, I think I may be able to help. First suggestion is to dump the data and the data schema separetly. use, for schema: pg_dump -sxnc -f/tmp/schema.dump databasename for data: pg_dump -qxnd -f/tmp/data.dump databasename The data

PostgreSQL to MySQL

2001-10-04 Thread Jani Tolonen
Hi, [EMAIL PROTECTED] writes: > To whom ever can help: > > I have a database dumped from PostgreSQL to a text file , is there any > method used to convert this to MySQL? Yes, please use mysqlimport. See mysqlimport --help for information, more detailed information can be found from the MyS

PostgreSQL to MySQL

2001-10-04 Thread owen
To whom ever can help: I have a database dumped from PostgreSQL to a text file , is there any method used to convert this to MySQL? - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lis