MySQL 错误问题汇总(不断更新中)

2022-11-12 09:23:02
内容摘要
这篇文章主要为大家详细介绍了MySQL 错误问题汇总(不断更新中),具有一定的参考价值,可以用来参考一下。 对此感兴趣的朋友,看看idc笔记做的技术笔记!1、Mysql errono 1005 : 主
文章正文

这篇文章主要为大家详细介绍了MySQL 错误问题汇总(不断更新中),具有一定的参考价值,可以用来参考一下。

对此感兴趣的朋友,看看idc笔记做的技术笔记!

1、Mysql errono 1005 : 主外键不是完全一致 , 请检查如下几点:a、字段是否存在b、类型是否一致(注意unsigned , powerdesign 生成问题)c、数据库引擎是否一致d、字符编码是否一致e、windows平台下注意修改lower_case_table_names = 0, windows本身不区分文件大小写,改为0之后就区分了可能造成找不到引用的表2、Mysql errono 121: 外键约束名称重复3、记录 Mysql WorkBench 中单词缩写意义:PK: primary key (column is part of a pk)NN: not null (column is nullable)UQ: unique (column is part of a unique key)AI: auto increment (the column is auto incremented when rows are inserted)BIN: binary (if dt is a blob or similar, this indicates that is binary data, rather than text)UN: unsigned (for integer types, see docs: “10.2. Numeric Types”)ZF: zero fill (rather a display related flag, see docs: “10.2. Numeric Types”)4、mysql 权限设置 //添加远程主机访问MYSQL root权限insert into user(host,user,password) values('%','root',PASSWORD('root'));//root 权限授权grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option;//更新权限设置flush privileges;5、防火墙设置 //打开端口/sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT//保存/etc/rc.d/init.d/iptables save//查看状态/etc/init.d/iptables status6、开机自动运行(实现类似Windows服务) /sbin/chkconfig --level 2345 mysqld on/sbin/chkconfig --list结果如下:mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off

注:关于MySQL 错误问题汇总(不断更新中)的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!