
mysql
mylibrary1
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
innodb 存储布局
Data Organization in InnoDB By annamalai.gurusami on Apr 19, 2013 Introduction This article will explain how the data is organized in InnoDB storage engine. First we will look at the various fi转载 2014-08-01 14:15:58 · 766 阅读 · 0 评论 -
使用eclipse CDT编译mysql(转载)
https://mariadb.com/blog/compiling-debugging-mariadband-mysql-eclipse-scratch-part-2-compile-eclipse Section 2: "COMPILE MARIADB IN ECLIPSE" 2.1 Download and prepare sources folder We wil转载 2014-08-11 14:48:09 · 735 阅读 · 0 评论 -
mysql和db2隔离级别的区别
Mysql为: Read uncommitted Read committed //当前读加锁 Repeatable read //其他事务不能插入新记录,解决幻读 Serializable //所有读均为当前读,读写互斥。 Db2: 注意:mysql和db2对幻读的定义不同,导致db2的隔离级别定义无法与mysql对应。 根据claire ppt,Db2中的non-repeat原创 2014-09-12 13:27:54 · 1424 阅读 · 0 评论