SELECT @@MAX_CONNECTIONS AS 'Max Connections';set GLOBAL max_connections=10000; show status like '%thread%'; ...
分类:
数据库 时间:
2016-05-24 22:40:04
阅读次数:
189
执行mysql函数时报错:1172 - Result consisted of more than one row 函数语句中select into语句中WHERE account = userName查出的结果出现2条相同的记录才报出这个错误 SELECT id,last_stamp,token ...
分类:
数据库 时间:
2016-05-11 15:15:50
阅读次数:
6729
这是因为大多数mysql-*的资源名称被mariadb-*重命名了 所以换成 yum install mariadb-server 就可以了 PS[摘自网络] MariaDB不仅仅是Mysql的一个替代品,它的主要目的是创新和提高Mysql的技术。 MySQL之父Widenius先生离开了Sun之后 ...
分类:
数据库 时间:
2016-05-07 15:00:10
阅读次数:
327
启动mysql 报错: ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock’ (111) 1、先查看 /etc/rc.d/init.d/mysqld sta ...
分类:
数据库 时间:
2016-05-05 12:51:35
阅读次数:
151
step1:查看1.1 Mysql命令行里输入“show engines;”查看innoddb数据引擎状态,1.2 show variables “%_buffer%”里查看innodb_buffer_pool_size的数值,默认是8M(太小,需要改大一点!)step2:找配置文件,修改innod... ...
分类:
数据库 时间:
2016-04-30 20:53:36
阅读次数:
328
错误日志:[root@HKBOscripts]#tail/var/log/mysqld.log
InnoDB:Applybatchcompleted
2014-12-0811:01:3715721[Note]InnoDB:128rollbacksegment(s)areactive.
2014-12-0811:01:3715721[Note]InnoDB:Waitingforpurgetostart
2014-12-0811:01:3715721[Note]InnoDB:5.6.12star..
分类:
数据库 时间:
2016-04-15 14:11:14
阅读次数:
289
网上搜索的大部分都是如下这样 结果你会发现,mysql报错,因为不能更新用于子查询里面的表。 ...
分类:
数据库 时间:
2016-04-01 17:45:25
阅读次数:
183
最近重启服务器的mysql总是报大量的如下错误:1603309:14:26[Warning]/usr/libexec/mysqld:Forcingcloseofthread139user:‘root‘
1603309:14:26[Warning]/usr/libexec/mysqld:Forcingcloseofthread138user:‘root‘
1603309:14:26[Warning]/usr/libexec/mysqld:Forcingcloseofthre..
分类:
数据库 时间:
2016-03-30 11:12:21
阅读次数:
3374
1)【问题】
发现我要存到数据库中的时间DateTime中间多了星期 ,即 (2015/11/24 星期二 21:48:54 )这种格式的时间,mysql报错说格式时间不正确。我用如下方法,弹出来的时间都带着日期,
MessageBox.Show(DateTime.Now.().ToString());
MessageBox.Show(DateTime.Now.ToLongTimeString...
分类:
数据库 时间:
2016-03-27 01:43:16
阅读次数:
189
mysql:Characterset‘utf8mb4‘isnotacompiledcharactersetandisnotspecifiedinthe‘/usr/share/mysql/charsets/Index.xml‘file报错的解决方法1、由于日常程序使用了字符集utf8mb4,为了避免每次更新时,setnamesutf8mb4,就把配置文件改了,如下:增加了mysql客户端的默认字符集..
分类:
数据库 时间:
2016-03-23 20:11:59
阅读次数:
12994