We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On this guide, when you execute the following command on a 5.5 MySQL :
mysqldump --host=adresse_du_serveur --user=nom_utilisateur --password=mot_de_passe_utilisateur nom_base_de_données > nom_fichier_sauvegarde.sql
the dump succeed but showing the following error :
'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces
To prevent this error, add the option --no-tablespaces to the command, like this :
--no-tablespaces
mysqldump --host=adresse_du_serveur --user=nom_utilisateur --password=mot_de_passe_utilisateur --no-tablespaces nom_base_de_données > nom_fichier_sauvegarde.sql
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On this guide, when you execute the following command on a 5.5 MySQL :
mysqldump --host=adresse_du_serveur --user=nom_utilisateur --password=mot_de_passe_utilisateur nom_base_de_données > nom_fichier_sauvegarde.sql
the dump succeed but showing the following error :
'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces
To prevent this error, add the option
--no-tablespaces
to the command, like this :mysqldump --host=adresse_du_serveur --user=nom_utilisateur --password=mot_de_passe_utilisateur --no-tablespaces nom_base_de_données > nom_fichier_sauvegarde.sql
The text was updated successfully, but these errors were encountered: