博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql中查看sql语句的加锁信息
阅读量:6581 次
发布时间:2019-06-24

本文共 2341 字,大约阅读时间需要 7 分钟。

打开开关innodb_lock_monitor用来查看一条语句执行的时候,使用命令show engine innodb status对系统中的lock信息。

开启mysql> use marketingDatabase changedmysql>mysql> create table innodb_lock_monitor(x int) engine=innodb;Query OK, 0 rows affected (0.08 sec)mysql> exitBye
关闭mysql> use marketingReading table information for completion of table and column namesYou can turn off this feature to get a quicker startup with -ADatabase changedmysql> drop table innodb_lock_monitor;Query OK, 0 rows affected (0.02 sec)

然后使用show engine innodb status进行显示,关于lock的部分是

---TRANSACTION 31C, ACTIVE 42 sec
2 lock struct(s), heap size 320, 6 row lock(s)
MySQL thread id 2, OS thread handle 0x1220, query id 128 localhost 127.0.0.1 root
Trx read view will not see trx with id >= 31D, sees < 31D
TABLE LOCK table `test`.`ta` trx id 31C lock mode IX   (-------------对表加了IX意向锁)
RECORD LOCKS space id 0 page no 312 n bits 72 index `GEN_CLUST_INDEX` of table `test`.`ta` trx id 31C lock_mode X(对以下的行加了X锁)
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
 0: len 8; hex 73757072656d756d; asc supremum;;
Record lock, heap no 2 PHYSICAL RECORD: n_fields 5; compact format; info bits 0
 0: len 6; hex 000000000203; asc       ;;
 1: len 6; hex 00000000030a; asc       ;;
 2: len 7; hex 8b000001390110; asc     9  ;;
 3: len 4; hex 80000003; asc     ;;
 4: SQL NULL;
Record lock, heap no 3 PHYSICAL RECORD: n_fields 5; compact format; info bits 0
 0: len 6; hex 000000000204; asc       ;;
 1: len 6; hex 00000000030a; asc       ;;
 2: len 7; hex 8b00000139011e; asc     9  ;;
 3: len 4; hex 80000004; asc     ;;
 4: SQL NULL;
Record lock, heap no 4 PHYSICAL RECORD: n_fields 5; compact format; info bits 0
 0: len 6; hex 000000000205; asc       ;;
 1: len 6; hex 00000000030a; asc       ;;
 2: len 7; hex 8b00000139012c; asc     9 ,;;
 3: len 4; hex 80000005; asc     ;;
 4: SQL NULL;
Record lock, heap no 5 PHYSICAL RECORD: n_fields 5; compact format; info bits 0
 0: len 6; hex 000000000206; asc       ;;
 1: len 6; hex 000000000312; asc       ;;
 2: len 7; hex 900000013f0110; asc     ?  ;;
 3: len 4; hex 8000000b; asc     ;;
 4: len 4; hex 8000000c; asc     ;;
Record lock, heap no 6 PHYSICAL RECORD: n_fields 5; compact format; info bits 0
 0: len 6; hex 00000000020c; asc       ;;
 1: len 6; hex 000000000316; asc       ;;
 2: len 7; hex 94000001420110; asc     B  ;;
 3: len 4; hex 8000000c; asc     ;;
 4: len 4; hex 8000000d; asc     ;;

转载于:https://www.cnblogs.com/jack204/archive/2012/08/20/2647651.html

你可能感兴趣的文章
测试一个网站的最大并发量并发数并发用户
查看>>
适配器模式(数据库方面)支持不同的数据库连接
查看>>
Jenkins(二) 安装、新建Jobs与删除及SVN配置(转)
查看>>
CF456B Fedya and Maths 找规律
查看>>
touch修改mtime和atime
查看>>
nodejs安装及windows环境配置
查看>>
转载:Beginning WF 4.0翻译——第三章(流程图工作流)
查看>>
mysql alter table
查看>>
芯片测试
查看>>
记录一次tomcat下项目没有加载成功
查看>>
在源代码中插入防止盗版代码片段的方式
查看>>
hdu 3367 Pseudoforest(最大生成树)
查看>>
Spring mvc PostgreSQL 插入timestamp和int8
查看>>
一个人,一则故事,一份情愫,一个世界……
查看>>
ffserver联合ffmpeg建立媒体服务器
查看>>
下载稻草人下来刷新+gallery
查看>>
删除浏览器浏览器删除cookie方法
查看>>
微软URLRewriter.dll的url重写的简单使用(实现伪静态)
查看>>
leetcode -- Combination Sum II
查看>>
1z0-052 q209_7
查看>>