Jo Micheal
Published in : 2022-01-09
When i am using my backup from my server I got this error when i upload the DB to the PHPMyAdmin
Storage engine 'InnoDB' does not support system tables. [mysql.columns_priv]
After searching I realized that I used a command like to export all databases which is
mysqldump --user root --password --all-databases > /var/www/html/db-backups/db_backup-8-Jan-2022.sql
but this cause error when i import the file in my DB the right command is by specifying the DB which i want to export.
using this command
mysqldump --user root --password laravel_DB > /var/www/webbrackets/db-backups/db_backup-9-Jan-2022.sql
There is no comments yet
Join our community and get the chance to solve your code issues & share your opinion with us
Sign up Now