I'm having problems using the built-in MySQL reporting method to dump to a file.
According to this , the patch was fixed in mysqldump.exe more than a year ago, which will print progress on the command line on so many lines if mysqldump was called with the --verbose and --show_progress_size parameters. However, when I run the command
mysqldump -u <user> -p<password> --verbose --show_progress_size <database_name> > "C:\thingy.sql"
I get an error message below:
mysqldump: unknown option '--show_progress_size'
I could not find an entry to remove this option from mysqldump. I am using MySQL community server version 5.1.58, with mysqldump in Version 10.13.
If this feature is really removed, Iām looking for a way to implement an accurate progress bar for dumps and restores.
source share