数据库
Wingel
这个作者很懒,什么都没留下…
展开
-
transaction in Spring
Propagation behavior:PROPAGATION_MANDATORY: Indicates that the method must run within a transaction. If no existing transaction is in progress, an exception will be thrown.PROPAGATION_NESTED: Indi原创 2006-11-26 10:38:00 · 1258 阅读 · 0 评论 -
事务隔离级别
前几天同事讲了Transaction isolation level,并且大家一起在SQLServer,Oracle跟MySQL数据库上实验了一下,发觉这些知识还是挺重要的。假如有两个事务并发,顺序如下Transaction A Transaction Bbegin beginquery1 from table A .......原创 2006-11-26 10:48:00 · 1579 阅读 · 1 评论 -
Transaction Isolation Level
here are four isolation levels: READ UNCOMMITTED (在一个事务中,可能读到别的事务还没提交的数据) READ COMMITTED(在一个事务中,同样的语句可能查询到不同的数据,因为在这两个语句之间,别的事务更改提交了这两个语句涉及的数据)REPEATABLE READ(保证一个事务A里面读到的数据不会变,即使期间别的事务B提交更改了数原创 2006-11-26 10:44:00 · 1036 阅读 · 0 评论