gpt4 book ai didi

MySQL 错误 – 用户已超出 ‘Max_questions’ 资源(当前值 : 1000)

转载 作者:行者123 更新时间:2023-11-29 02:00:59 25 4
gpt4 key购买 nike

我有一个使用 MySQL 数据库的 Rails 3 应用程序。在我的应用程序测试阶段,我插入大量数据以检查我的应用程序的功能。插入大量条目后,我收到 Mysql 错误,例如,

Mysql2::Error: User 'Databasename' has exceeded the 'max_questions' resource (current value: 10000): SELECT  `users`.* FROM `users`  WHERE `users`.`username` = 'admin' LIMIT 1

如何解决这个错误。Mysql中是否有任何限制,如果有如何覆盖它。

感谢任何帮助..

最佳答案

出于测试目的,您可以将其定义为:

SET @MAX_QUESTIONS=<your new value>; 

在 MySQL 中

或:

update user set max_questions = 10000 where user = 'you name or root';

如果您为 max_questions 设置 0 - 这意味着无限制

注意:您可能需要重启Mysql服务器才能生效


当然你可以刷新权限:

FLUSH PRIVILEGES;

关于MySQL 错误 – 用户已超出 ‘Max_questions’ 资源(当前值 : 1000),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14873094/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com