Skip to content

Instantly share code, notes, and snippets.

@x0bandeira
Created April 21, 2014 20:19
Show Gist options
  • Save x0bandeira/11155216 to your computer and use it in GitHub Desktop.
Save x0bandeira/11155216 to your computer and use it in GitHub Desktop.
Migrating PG to MySQL with MySQLWorkbench

Install iodbc /usr fix for Mac, third link

http://www.iodbc.org/dataspace/iodbc/wiki/iODBC/Downloads#Mac_OS_X

Now you build psqlODBC

curl http://ftp.postgresql.org/pub/odbc/versions/src/psqlodbc-09.03.0210.tar.gz -o psqlodbc-09.03.0210.tar.gz
tar -xzf psqlodbc-09.03.0210.tar.gz
cd psqlodbc-09.03.0210.tar.gz
./configure --with-iodbc=/usr/local/iODBC/ --enable-pthreads --without-libpq
CFLAGS="-arch i386 -arch x86_64" make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment