1.使用命令查看DB2 是否为自动提交
db2 list command options
2.将自动提交修改为OFF,下面的方法是临时关闭,需要每个终端都需要执行生效。
db2 “update command options using c off”
永久关闭db2set DB2OPTIONS=+c
[db2inst1@db04 ~]$ db2 list command options | grep -i “-c”
-c Auto-Commit OFF
3.创建测试表
db2 connect to testdb
db2 “create table test(id int,name varchar(10))”
4.插入两行数据
db2 “insert into test values(1,’aaaa’)”
db2 “insert into test values(2,’bbbb’)”
在此终端1执行命令查看
db2 “select * from test”
5.在终端2查看,发现数据库存在SQL0911N,回滚了当前事务。
db2 “select * from test”
6.在终端1执行update命令db2 “update test set name=’aaaaa’ where id=1”
7.在终端2执行update命令
db2 “update test set name=’xxxxxx’ where id=1”
8.查看锁超时时间
db2 get db cfg for testdb | grep -i LOCKTIMEOUT
9.为了更好的实验,决定将LOCKTIMEOUT修改为600秒
db2 update db cfg using LOCKTIMEOUT 600
db2stop force
db2start
db2 activate db testdb
10.查看是否有所等待
db2 list applications show detail | grep -i lock
db2pd -db testdb -lock showlocks wait -applications -transactions -dynamic
也可以通过看到AppHandl
db2pd -db testdb -wlock
db2pd -db testdb -application -dynamic
通过AppHandl找到L-AnchID和L-StmtUID,分别为734,1和912,1。
可以看到,734,1和912,1对应的SQL为
db2 “update test set name=’aaaaa’ where id=1”
db2 “update test set name=’xxxxxx’ where id=1”
734,1对应状态是UOW-Waiting,912,1对应状态是Lock-wait状态。
找到对应的SQL,查看是否可以
db2 “force application (80)”
版权声明:本文为博主原创文章,未经博主允许不得转载。
oracle,linux