How to Check or Repair all tables from all databases in MySQL with mysqlcheck

he command is this:
mysqlcheck -u root -p --auto-repair --check --all-databases
You must supply the password when asked,
or you can run this one but it's not recommended because the password is written in clear text:
mysqlcheck -u root --password=THEPASSWORD --auto-repair --check --all-databases

Post a Comment

0 Comments