发布时间: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-04 13:44:04
一直在从事postgres内核修改的工作,对postgres的代码还算比较熟悉,在工作讨论中,有意无意的大家都会提起,MySQL在这方面是怎么做的,最近读了以下网站:http://www.mysqlops.com关于MySQL源码解读 的文章,感觉作者对MySQL也是相当熟悉,文章写的也很好,MySQL和PostgresQL在很多功能设计上有许多相似之.........【阅读全文】
发布时间:2014-05-23 18:58:53
Shell脚本是我们写不同类型命令的一种脚本,这些命令在这一个文件中就可以执行。我们也可以逐一敲入命令手动执行。如果我们要使用shell脚本就必须在一开始把这些命令写到一个文本文件中,以后就可以随意反复运行这些命令了。 假定你已经知道she.........【阅读全文】
发布时间:2014-04-15 13:09:37
1 引擎说明本地MySQL数据库要访问远程MySQL数据库的表中的数据, 必须通过FEDERATED存储引擎来实现. 有点类似Oracle中的数据库链接(DBLINK). 要允许这个存储引擎, 当构建MySQL时使用--with-federated-storage-engine来configure. 当创建一个FEDERATED表的时候, 服务.........【阅读全文】