
mysql
老朱0797
这个作者很懒,什么都没留下…
展开
-
安装mysql没有生成data文件问题
1.运行cmd 管理员操作模式2.切换到mysql 目录 >> cd bin >> mysqld -install 再重复一次上面命令 >> mysqld --initialize-insecure --user=mysql等待文件生成OK!关闭:net stop mysql启动: net start mysql...原创 2020-06-28 16:25:39 · 6444 阅读 · 1 评论 -
安利 Access denied for user root @ localhost错误
一个大家经常遇到的小错误:提示这种错误就是密码不正确导致的。检查一下账户密码改成正确的 重新运行 OK!原创 2020-06-28 15:21:33 · 212 阅读 · 0 评论 -
mysql 1418 This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA
错误场景:使用mysql创建、调用存储过程,函数以及触发器的时候会有错误符号为1418错误。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)这个函数定义中没有包含det原创 2020-06-05 14:50:03 · 1658 阅读 · 0 评论 -
You must reset your password using ALTER USER statement before executing this statement
登陆到MySQL服务器,不管执行什么命令都报这个错 其实只要修改密码就好了 执行命令alter user user() identified by "新密码";OK完美解决。...转载 2020-05-12 10:02:23 · 465 阅读 · 0 评论