阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

MySQL事务表和非事务表

176次阅读
没有评论

共计 1569 个字符,预计需要花费 4 分钟才能阅读完成。

MySQL 事务表和非事务表

查看 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,该参数不够时,则提示需要更多的空间。

本文永久更新链接地址 :http://www.linuxidc.com/Linux/2016-09/135236.htm

正文完
星哥玩云-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-01-22发表,共计1569字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中