I am trying to migrate from postgres to mysql database using mysql workbench. I have installed postgres into my system and its working fine.
When i start migration wizard and dependency error shows as,
Could not import the pyodbc python module. You need pyodbc 2.1.8 or newer or migrations from RDBMSes other than MYSQL.
then after ignoring this error when i actually start the migration process it shows me another error in log,
SystemError: ImportError("No module named pyodbc"): error calling Python module function DbPostgresqlRE.connect
ERROR: Error during Connect to source DBMS: ImportError("No module named pyodbc"): error calling Python module function DbPostgresqlRE.connect
ERROR: Exception in task 'Connect to source DBMS': SystemError('ImportError("No module named pyodbc"): error calling Python module function DbPostgresqlRE.connect',)
After googling a bit I reinstalled or newly installed few things, but it did not work as the same error popups every time. I tried renaming the python file , dll file , manually copied installed pyodbc.py, installed different versions of python but still the same.
how to resolve this issue ?