1、mysql开启函数功能

MySQL函数不能创建的解决方法

在使用MySQL数据库时,有时会遇到mysql函数不能创建的情况。

出错信息大致类似:

ERROR 1418 (HY000): This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
ERROR 1418 (HY000): This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)

MySQL函数不能创建,是没有开启函数功能,下面操作开启函数功能:

mysql> show variables like '%func%';
+---------------------------------+-------+
| Variable_name | Value |
+---------------------------------+-------+
| log_bin_trust_function_creators | OFF |
+---------------------------------+-------+
1 row in set (0.03 sec)

mysql> set global log_bin_trust_function_creators=1;
Query OK, 0 rows affected (0.00 sec)

mysql> show variables like '%func%';
+---------------------------------+-------+
| Variable_name | Value |
+---------------------------------+-------+
| log_bin_trust_function_creators | ON |
+---------------------------------+-------+
1 row in set (0.01 sec)

2、grant 操作 MySQL 存储过程、函数权限

grant create routine on dianshang_db.* to jenknins@'%';

grant alter routine on dianshang_db.* to jenkins@'%';

grant execute on dianshang_db.* to jenkins@'%';

参照文档

https://blog.csdn.net/fanhenghui/article/details/69945846

最新文章

  1. 翻译:使用 ASP.NET MVC 4, EF, Knockoutjs and Bootstrap 设计和开发站点 - 6 - 业务逻辑
  2. python画决策树
  3. Python简单练习
  4. virtualbox安装增强功能时【未能加载虚拟光盘】
  5. 利用Jquery的load函数实现页面的动态加载
  6. nginx反向代理proxy模块相关参数
  7. Js分页插件,支持页面跳转
  8. Vmware Vsphere WebService SDK开发(第一讲)-基本知识学习
  9. 数据结构(C语言版)---第三章栈和队列 3.4.2 队列的链式表示和实现(循环队列)
  10. 添加数据库的Maven依赖(SqlServer,Oracle)
  11. 使用astyle格式化代码
  12. Entity Framework 6 学习笔记
  13. sql显示12个月数据
  14. ASP.NET MVC 之Model的呈现
  15. 一个opencv 博客 大量文章(老版本编写C )
  16. Android 开发笔记___shape
  17. 梯度下降算法对比(批量下降/随机下降/mini-batch)
  18. 深度学习原理与框架-Tensorflow卷积神经网络-cifar10图片分类(代码) 1.tf.nn.lrn(局部响应归一化操作) 2.random.sample(在列表中随机选值) 3.tf.one_hot(对标签进行one_hot编码)
  19. 《DSP using MATLAB》 Problem 4.9
  20. 撩课-Java每天5道面试题第24天

热门文章

  1. 神经网络(3)---如何表示hypothesis,如何表示我们的model
  2. HTTP请求响应过程以及与HTTPS区别
  3. MyBatis的关联查询
  4. 把hdfs数据写入到hbase表
  5. 学到了林海峰,武沛齐讲的Day24-完 对象和实例
  6. Oracle 10g和11g中的自动统计任务
  7. exam9.3
  8. P1025 数的划分——简单题刷傻系列
  9. (转)hadoop balancer(重新平衡)
  10. Hadoop namenode连接journalnode限制导致集群启动失败