专栏名称: 数据分析与开发
伯乐在线旗下账号,分享数据库相关技术文章、教程和工具,另外还包括数据库相关的工作。偶尔也谈谈程序员人生 :)
目录
相关文章推荐
数据中心运维管理  ·  我国算力中心大盘点,8大枢纽与10大数据中心 ·  1 周前  
数据中心运维管理  ·  冷却分配单元:液冷系统的核心 ·  1 周前  
数据中心运维管理  ·  国家标准《数据中心设计标准》修订工作正式启动 ·  1 周前  
数据中心运维管理  ·  北京自2026年起,对PUE>1.35的数据 ... ·  1 周前  
Java知音  ·  MyBatis批量插入几千条数据,请慎用fo ... ·  5 天前  
51好读  ›  专栏  ›  数据分析与开发

MySQL 事务表和非事务表

数据分析与开发  · 公众号  · 数据库  · 2016-09-18 20:18

正文

(点击上方蓝字,快速关注我们)


来源:十字螺丝钉

网址:blog.chinaunix.net/uid-23284114-id-5751217.html


查看 max_binlog_stmt_cache_size 参数解释时,有这么一句话 If nontransactional statements within a transaction require more than this many bytes of memory, the server generates an error.


那么,什么是 nontransactional statements ?


在 http://dev.mysql.com/ 查找 nontransactional关键字,出来的第一个是 Rollback Failure for Nontransactional Tables 。


那么什么又是 Nontransactional Tables ?


Nontransactional Tables,非事务表,不支持事务的表,也就是使用MyISAM存储引擎的表。


非事务表的特点是不支持回滚,看下面的列子


>create table no_trans(id int) ENGINE=MyiSAM;

>start transaction;

>insert into no_trans values(1);

>select * from no_trans;

+------+

| id   |

+------+

|    1 |

+------+

1 row in set (0.00 sec)

 

>rollback;

Query OK, 0 rows affected, 1 warning (0.00 sec)

 

>show warnings;

+---------+------+---------------------------------------------------------------+

| Level   | Code | Message                                                       |

+---------+------+---------------------------------------------------------------+

| Warning | 1196 | Some non-transactional changed tables couldn't be rolled back |

+---------+------+---------------------------------------------------------------+

1 row in set (0.00 sec)

 

>select * from no_trans;

+------+

| id   |

+------+

|    1 |

+------+

1 row in set (0.00 sec)


可以看到,非事务表回滚抛出警告,显示非事务表不支持回滚。


与非事务表对象的是事务表,比如使用InnoDB的表,支持回滚操作。


>create table trans(id int);

>start transaction;

>insert into trans values(1);

>select * from trans;

+------+

| id   |

+------+

|    1 |

+------+

1 row in set (0.00 sec)

 

 

>rollback;

Query OK, 0 rows affected (0.00 sec)

 

 

>select * from trans;

Empty set (0.00 sec)


可以得出,nontransactional statements的意思是操作非事务表的语句。


max_binlog_stmt_cache_size 该参数影响的是非事务表,如MyISAM,该参数不够时,则提示需要更多的空间。


max_binlog_cache_size 该参数影响的是事务表,如InnoDB,该参数不够时,则提示需要更多的空间。



关注「数据库开发」

看更多精选数据库技术文章

↓↓↓