数据库
文章平均质量分 53
有人赞美聪慧有人则不
这个作者很懒,什么都没留下…
展开
-
mysql添加外键失败:sql 1452 Cannot add or update a child row:a foreign key constraint fails
今天对已存在的两个表中的一个表添加另一个表的主键为外键,遇到以下错误:sql 1452 Cannot add or update a child row:a foreign key constraint fails原因:设置的外键和对应的另一个表的主键值不匹配。解决方法:找出不匹配的值修改。或者清空两表数据。(工作中遇到的小问题,留下笔记以便日后需要)转载 2016-04-14 10:03:34 · 48082 阅读 · 1 评论 -
RedHat/CentOS中安装Oracle11g
一、准备工作 1.检查内存空间大小[root@ora11g ~]# grep MemTotal /proc/meminfoMemTotal: 3041772 kB 2.查看交换分区swap[root@ora11g ~]# grep SwapTotal /proc/meminfoSwapTotal: 2031608 kB原创 2016-04-14 10:42:48 · 486 阅读 · 0 评论 -
mysql中select column_name from Information_schema.columns where table_Name = 'test'出现多个字段的问题
在mysql中,通过sql查询某个表字段时,会出现一些这个表中没有的字段例:select column_name from Information_schema.columns where table_Name = 'test';因为这个表在其它库中也存在了,所以会出现多余的字段。解决办法:select column_name from Information_s原创 2017-04-06 11:29:18 · 15095 阅读 · 6 评论