
Mysql
iteye_19813
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
mysql 数据库自动备份
1、把下面的代码放到记事本txt文件当中,在把文件.txt扩展名改为.bat。 2、下面的代码中修改相应的参数(红色部分)。 3、使用系统的任务计划做一个每一天启动这个bat文件的任务,完成备份。 ================代码开始============================ for /f "Tokens=1 Delims=/ " %%i in ('date /t...2007-11-26 11:27:00 · 138 阅读 · 0 评论 -
mantis bug 管理系统的不同状态信息的对照
C:\mantis\lang\ strings_chinese_simplified.txt $s_access_levels_enum_string = '10:查看人员,25:报告人员,40:修改人员,55:开发人员,70:经理,90:管理员';$s_project_status_enum_string = '10:开发中,30:已发布,50:稳定,70:停止维护';$s_project_...2007-10-26 17:50:00 · 229 阅读 · 0 评论 -
data too long for column 'Auser' at row 1
mantis bug管理系统的二次asp.net 接口开发的时候,碰到编码的问题,如上述标题。 此系统的功能比较好,开源的php+myql. mysql 的 默认设置 file:my.ini [mysql] default-character-set=latin1 [mysqld] default-character-set=latin1 mysql 数据库的编码细节查询都是lat...2007-10-26 17:33:00 · 110 阅读 · 0 评论 -
mysql cluster 子查询速度很慢
在整个mysql cluster 的测试过程当中,对于insert、update 、delete、groupby或order by等等都会执行的很快,远远超出单台机器的性能,可以说四台机器能够超过一台机器的4倍以上的速度。 可惜,我在测试过程当中,对于子查询,始终没有找到很好的处理方案。怀疑自己的处理是不是配置方案没有达到高效水平。另一方面,也怀疑系统的真实存在的问题。 当同样的数据...2007-09-22 20:38:00 · 231 阅读 · 0 评论 -
mysql 集群测试结果
2007-09-12 18:25:00 · 116 阅读 · 0 评论 -
MySQL公司宣布基于SCI-Cluster数据库基准测试结果
在DBT2基准测试中,MySQL Cluster电信级版本能扩展到每分钟100,000个事务处理 2007年4月26日,全球最流行的开源数据库开发商MySQL公司 在2007 MySQL大会上宣布了最新的MySQL Cluster Carrier Grade Edition(MySQL Cluster电信级版本)数据库DBT2基准测试结果。该测试是和Intel公司和Dolphin Inter...2007-09-12 11:22:00 · 102 阅读 · 0 评论 -
mysql的集群运营商级版
MySQL Cluster Carrier Grade Edition provides the telecom industry with a true real-time database with flexibility of a relational database plus the cost savings of open source. It is specifically des...2007-09-12 10:21:00 · 140 阅读 · 0 评论 -
MySQL公司宣布Cluster数据库基准测试结果
2007年4月26日,全球最流行的开源数据库开发商MySQL公司在2007 MySQL大会上宣布了最新的MySQL Cluster Carrier Grade Edition(MySQL Cluster电信级版本)数据库DBT2基准测试结果。该测试是和Intel公司和Dolphin Interconnect Solutions公司一起合作完成的。 该基准测试结果显示了MySQL Cluste...2007-09-11 21:31:00 · 90 阅读 · 0 评论 -
集群速度问题
CREATE TABLE `urllog` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `url` varchar(435) NOT NULL DEFAULT '', `create_time` datetime NOT NULL, `groupid` int(11) DEFAULT NULL, PRIMARY KEY (`ID`)) ENGINE=ndbclu...2007-09-11 16:25:00 · 249 阅读 · 0 评论 -
创建高可用性能的mysql集群
Today's enterprise depends on the availability of mail and web services. Failure is never far away, whether it be a hardware failure or a human error. We have to try to make an infrastructure as highl...2007-09-11 15:05:00 · 114 阅读 · 0 评论 -
自己经历的mysql cluter配置过程(二)配置文件
自己经历的mysql cluter配置过程 76.my.cnf #mpleMySQLconfigfileformediumsystems.##Thisisforasystemwithlittlememory(32M-64M)whereMySQLplays#animportantpart,orsystemsupto128MwhereMySQLisusedtogetherwith#other...2007-09-10 11:52:00 · 140 阅读 · 0 评论 -
transaction coordinator (increase MaxNoOfConcurrentOperations)' from ndbcluster
mysql> TRUNCATE TABLE `user_ourproperty`; ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction And if I try to empty it with a DELETE command, I get a different error: mysql&g...2007-09-08 23:10:00 · 296 阅读 · 0 评论 -
mysql 和 sql server 的执行脚本对比
今天正在对mysql cluster 的部分测试,测试过程当中我对两个系统的同样结构的表格进行了查询,结果出人意料。 脚本如下: DROP TABLE IF EXISTS urllog;CREATE TABLE urllog( ID int(11) NOT NULL auto_increment, url varchar(435) NOT NULL default '', create_tim...2007-09-07 20:42:00 · 132 阅读 · 0 评论 -
matis bug 管理系统的主要表格
dropindex"PRIMARY"onmantis_user_table;dropindexidx_user_cookie_stringonmantis_user_table;dropindexidx_user_usernameonmantis_user_table;dropindexidx_enableonmantis_user_table;dropindexidx_accessonma...2007-10-26 17:56:00 · 196 阅读 · 0 评论