在Web托管服务提供商的DB中更改`auto_increment_increment`

时间:2014-09-02 08:55:15

标签: mysql cloudbees

我将一个Web应用程序部署到CloudBees,并使用一键式GUI创建了一个MySQL数据库。看起来auto_increment_increment选项设置为10(表中id每个新行增加10)。我试图更改auto_increment_increment

SET GLOBAL auto_increment_increment=1;

但是我收到了一个错误:Error Code: 1227. Access denied; you need (at least one of) the SUPER privilege(s) for this operation

如何更改auto_increment_increment

1 个答案:

答案 0 :(得分:1)

提供商中的外部配置....

根据manual

  

设置全局变量需要SUPER权限。

因此,您需要使用具有此权限的用户进行访问,您应该向您的提供商询问相关信息。

当然,您可以为会话更改此变量:

SET SESSION auto_increment_increment=1;

您不需要任何特殊权限来执行此操作