help_topic

 
### Error updating database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException:
SELECT command denied to user 'autochain_uat'@'localhost' for table 'help_topic' ###
The error may involve defaultParameterMap ###
The error occurred while setting parameters ###

help_topic是mysql库下的一张表

使用help_topic时为了解决行转列的问题,出现上面错误是因为用户没有这张表的权限。

解决方法:

可以执行该SQL:GRANT SELECT ON mysql.help_topic TO 'autochain_uat'@'localhost'(给用户赋权限);

取消用户权限SQL:REVOKE SELECT ON mysql.help_topic FROM 'autochain_uat'@'localhost';

也可以根据下图步骤操作:

类似文章:https://blog.csdn.net/qq_36410795/article/details/75040758

猜你喜欢

转载自blog.csdn.net/b229911288/article/details/81127564