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 命令
基础教程推荐
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01