Изменение max_questions

Выдает такую ошибку:
MySQL Error!
------------------------

The Error returned was:
User 'klim' has exceeded the 'max_questions' resource (current value: 10)

Error Number:
1226

Подключаемся к MySQL

mysql -uroot -p mysql

Смотрим текущее значение:

SELECT user, max_questions FROM user WHERE user="klim"

Получаем ответ:

+------+---------------+
| user | max_questions |
+------+---------------+
| klim |            10 |
| klim |            10 |
+------+---------------+
2 rows in set (0.00 sec)

Увеличиваем лимит:

UPDATE user SET max_questions=20 WHERE user="klim";

Перезагружаем информацию из таблицы привелегий:

flush privileges;

Готово

Добавить комментарий

Ваш адрес email не будет опубликован.

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.