Amazon RDS unable to execute SET GLOBAL command(Amazon RDS 无法执行 SET GLOBAL 命令)
问题描述
我将 Amazon RDS 用于 mysql 数据库.我想运行一些 SET 命令,例如:
I am using Amazon RDS for mysql db. I want to run some SET commands for eg:
SET GLOBAL group_concat_max_len =18446744073709551615
但是当我运行这个命令时我得到这个错误
But when I run this command I get this error
ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER privilege(s) for this operation
当我尝试添加权限时,它不允许我添加.有什么帮助或意见吗?
When I try to add privileges, it does not allow me to add. Any help or inputs?
推荐答案
Amazon 不会为您提供 RDS 实例的 SUPER 权限(以防止您意外破坏复制等内容).
Amazon does not give you SUPER privileges on an RDS instance (to prevent you from breaking things like replication accidentally).
要配置 group_concat_max_len
,请使用 RDS 参数组,它允许您配置一组设置以应用于实例.
To configure group_concat_max_len
, use an RDS parameter group, which allows you to configure a group of settings to apply to an instance.
这篇关于Amazon RDS 无法执行 SET GLOBAL 命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Amazon RDS 无法执行 SET GLOBAL 命令


基础教程推荐
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- 带更新的 sqlite CTE 2022-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01