From cc3608bc7bfcf9add088f7c7b25fc21f5bccb114 Mon Sep 17 00:00:00 2001 From: Gregory Colpart Date: Tue, 8 Mar 2022 14:57:51 +0100 Subject: [PATCH] ajout d'une erreur avec mysqldump dans la FAQ --- HowtoMySQL/Troubleshooting.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/HowtoMySQL/Troubleshooting.md b/HowtoMySQL/Troubleshooting.md index e8b4480f..d5caeebf 100644 --- a/HowtoMySQL/Troubleshooting.md +++ b/HowtoMySQL/Troubleshooting.md @@ -940,4 +940,19 @@ Si l'on veux extraire des requêtes des binlogs par rapport a une date de début ~~~ mysqlbinlog --no-defaults --start-datetime="2021-12-01 15:40:00" --stop-datetime="2021-12-01 16:05:00" mysql-bin.000022 > requêtes.txt -~~~ \ No newline at end of file +~~~ + +## mysqldump : you need the PROCESS privilege + +En cas d'erreur du type : + +~~~ +mysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces +~~~ + +Un contournement est d'utiliser l'option `--no-tablespaces`. + +D'autres solutions sur + + +