码迷,mamicode.com
首页 > 数据库 > 详细

个人总结-mysql错误

时间:2016-04-20 02:17:40      阅读:296      评论:0      收藏:0      [点我收藏+]

标签:mysql

错误问题:

技术分享技术分享

解决:

mysql> grant execute on procedure state.proc_order_seller to ‘kfdata‘@‘localhost‘;

Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;

Query OK, 0 rows affected (0.00 sec)



错误问题:mysqldump: Got error: 1227: Access denied; you need (at least one of) the RELOAD privilege(s) for this operation when doing refresh

解决:权限不够,使用root备份


故障问题:mysqldump -uroot -p‘123456‘ -F -B -A|gzip >/data/mysql/backup/mysqlbak_$(date +%F).sql.gz

-- Warning: Skipping the data of table mysql.event. Specify the --events option explicitly.

mysqldump: Got error: 1146: Table ‘test.aa‘ doesn‘t exist when using LOCK TABLES

解决:

删除/application/mysql/data/test/目录中的AA.frm文件即可


错误问题:mysql从库数据同步出错

解决:从库设置跳过错误提示的方法:

stop slave;
set global sql_slave_skip_counter =1;
start slave;


本文出自 “Linux运维的自我修养” 博客,请务必保留此出处http://ywliyq.blog.51cto.com/11433965/1765520

个人总结-mysql错误

标签:mysql

原文地址:http://ywliyq.blog.51cto.com/11433965/1765520

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!