« MySQL/Débogage » : différence entre les versions

Contenu supprimé Contenu ajouté
Aucun résumé des modifications
Ligne 44 :
 
* Sinon, recréer le droit avec :
 
<syntaxhighlight lang="mysql">
GRANT ALL PRIVILEGES ON *.* TO 'mon_compte'@'mon_hôte2' IDENTIFIED BY PASSWORD 'mon_mot_de_passe_hashé';
 
</syntaxhighlight>
 
=== Base table or view not found: 1146 Table 'xxx' doesn't exist" is not defined, use one of: 100, 200, 250, 300, 400, 500, 550, 600 ===
Ligne 90 :
 
Toutefois cela ne préserve pas leur encodage Unicode. Le mieux est donc :
 
<syntaxhighlight lang="sql">
SET NAMES 'utf8';
 
</syntaxhighlight>
 
=== Foreign data src error ===
Ligne 133 :
Le serveur SQL est surchargé : exécuter les instructions une par une.
Sinon :
 
<syntaxhighlight lang="mysql">
SET innodb_lock_wait_timeout = 120;
</syntaxhighlight>
 
=== Query execution was interrupted, max_execution_time exceeded ===