MySQL Forums
Forum List  »  General

Re: Running mysqldump on windows 10
Posted by: Peter Brawley
Date: August 22, 2018 11:35PM

The Windows commandline client is the "Windows Command Prompt".

"mysqldumo" is mysqldump with a typo.

"It looks like a character set issue" means your problem looks like the result of a character set mismatch. Specifically, the file appears to have been encoded in a unicode charset, but the OS is reading it as ascii. To begin to chase down such a possibility, run ...

chcp

at the commandline to see what charset your Windows installation is using, and in the mysql client run ...

show variables like '%char%';"

to show the character sets being used by mysql.

(The file wasn't generated in PowerShell, was it? See https://dev.mysql.com/doc/refman/5.7/en/mysqldump.html.)

Options: ReplyQuote


Subject
Written By
Posted
Re: Running mysqldump on windows 10
August 22, 2018 11:35PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.