When copying my tables from a 4.1 server to a 4.0 server, I get charset errors. To get around this problem, I have to Export as SQL Dump, edit the dump file removing all charset references, and importing to the 4.0 server. *sigh*
Can SQLyog please be made to ignore the charset for databases that don't support charset?
Simply delete the charset's definition from the SQL-file using Notepad or another editor.
it is not a SQLyog issue – it is a MySQL issue!
[post=”6851″]<{POST_SNAPBACK}>[/post]
SQLyog uses MySQL's SHOW CREATE table statement in the generated dump file. The other option would be to read thru each and every columns definition and create the CREATE TABLE statement.
We prefer to use MySQL's SHOW CREATE table option because it is easier to keep up with the changes that MySQL does from version to version.