A command that can be used to backup all the database tables in WordPress

The given command can be used to backup all the database tables.

mysqldump –add-drop-table -h mysql_hostserver -u mysql_username -p mysql_databasename

  • True
  • False

Discussion

phpMyAdmin cannot handle large databases so using straight MySQL/MariaDB code will help. Use the mysqldump command with your MySQL server name, user name, and database name. It prompts you to input a password

References:

Scroll to Top