[置顶] difirence for oracle and mysql

For update: 

oracle 锁行

mysql  where key->锁行,非key->锁表 (只适用于innodb,事务块里)


oracle的 DML锁: 包括 TM(table-level-locks) 对象锁 和 TX(Row-level-locks)事务锁



begin trsaction:

oracle: set trasaton

mysql: begin


 


锁表情况:

mysql:

show global status like 'table_locks%'; 

oracle:

select *from v$locked_object;

mysql分区表不能外键约束
oracle分区表/某些有外键约束


你可能感兴趣的:([置顶] difirence for oracle and mysql)