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 命令
基础教程推荐
- 什么是 orradiag_<user>文件夹? 2022-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- 在多列上分布任意行 2021-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
