> Can anyone tell me where I can find documention on how to use mysql2pgsql?
> I downloaded the software conversion utility from www.pgsql.com.
Create a dump file from mysql, then give that file to mysql2pgsql (use
the --help option to see other possible parameters). Write the output to
a file:
mysql2pgsql --verbose dumpfile > pgsql.dump
The output file will work as-is or with some modifications to give you
something you can pipe to psql:
psql -e yourdb < pgsql.dump
Good luck!
- Thomas