发布时间:2014-06-07 10:19:30
MySQL5.1 引入表分区功能,使得MySQL在处理大表的能力上得到增强。使用过表分区功能的朋友应该知道,MySQL5.1中使用表分区的时候,对字段是有要求的,那就是必须是整数型,或者可以将其他类型的字段通过函数转换成整数型才可以。/* with MySQL 5.1 ivan @ MySQL实验室(mysqlab.net/blog/) */CREATE .........【阅读全文】
发布时间:2014-06-07 10:15:48
注: 此文章内容较旧,新版本5.5 已支持直接使用时间类型作为分区字段,不需要转换为int类型.一、 分区的概念二、 为什么使用分区?(优点)三、 分区类型四、 .........【阅读全文】
发布时间:2014-06-07 09:41:43
As per past experience working with MySQL and PHP, I feel that after completing initial phase of any Product / Project, the main task is to tune performance. And when it comes to performance , the first thing comes to any developer is to see how MySQL works and how he/she can tune it up to get.........【阅读全文】
发布时间:2014-06-07 09:35:10
Generally, We stores various values of choices in same a column of mysql database. For example we store user’s preferred categories in user table’s preferred_categories(varchar(250)) field(column). Value stored in this field may be like 1,2,5,6,11,18 or any of similar pattern. It would be di.........【阅读全文】
发布时间:2014-06-07 09:30:36
我使用的是SecureCRT5.5SecureCR下的文件传输协议有ASCII、Xmodem、Zmodem文件传输协议文件传输是数据交换的主要形式。在进行文件传输时,为使文件能被正确识别和传送,我们需要在两台计算机之间建立统一的传输协议。这个协议包括了文件的识别、传送的起止时间、错误的判断与纠正等内容。常见的传输协议有以下几种:&n.........【阅读全文】