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 命令


- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- SQL 临时表问题 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 更改自动增量起始编号? 2021-01-01