py-mysql2pgsql icon indicating copy to clipboard operation
py-mysql2pgsql copied to clipboard

Tool for migrating/converting from mysql to postgresql.

Results 49 py-mysql2pgsql issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/4569866/175281272-1282539c-96ff-4db7-b23d-b0b77aeae296.png)

If my mysql field type is blob and I copy the data at the end copy_from will report an error "missing data for column 'xxx'",

Whether the py-mysql2pgsql project supports incremental migration? there is no description of how to incrementally migrate in the documentation.

The Chinese comment in the mysql table, an error is reported during the conversion: UnicodeEncodeError: 'latin-1' codec can't encode characters in position 0-8: ordinal not in range(256) How to solve...

i have used this program few months ago and never happened it...

feedback

Whether Dynamic Data Sources are Supported ?

When there is a boolean type in the mysql table, the tool execution error is as follows: psycopg2.DataError: invalid input syntax for type boolean: ""

UnicodeEncodeError: 'latin-1' codec can't encode characters in position 0-5: ordinal not in range(256)

CONTEXT: COPY auditrecord, line 1, column SYSAMDIN: "" In the mysql SYSAMDIN data type BIT(1) when column create in postresql data type bool length 1 Can I change convert data...