【发布时间】:2021-07-13 06:25:11
【问题描述】:
我正在尝试在云 MySQL 中创建触发器并遇到以下错误。
ERROR 1419 (HY000): You do not have the SUPER privilege and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
也尝试设置全局变量,但超级用户缺少权限。
SET GLOBAL log_bin_trust_function_creators = 1;
ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER privilege(s) for this operation
这种情况下如何创建触发器?
【问题讨论】:
标签: mysql google-cloud-platform google-cloud-sql