第一种解决方法:

锁上编辑锁,加上查询他的ROWID就可以打开修改锁修改数据了
例:
select t.*,t.rowid from scott.emp t

 

第二种解决方法:

也可以 select t.* from scott.emp t for update 二种方式

相关文章: