可重复读(Repeatable Read),当使用可重复读隔离级别时,在事务执行期间会锁定该事务以任何方式引用的所有行。因此,如果在同一个事务中发出同一个SELECT语句两次或更多次,那么产生的结果数据集总是相同的。因此,使用可重复读隔离级别的事务可以多次检索同一行集,并对它们执行任意操作,直到提交或回滚操作终止该事务。
可重复读(REPEATABLE READ):保证同一个事务中的多次相同的查询的结果是一致的,比如一个事务一开始查询了一条记录然后过了几秒钟又执行了相同的查询,保证两...
基于1562个网页-相关网页
...:一个事务从开始到提交之前所做的任何改变都是不可见的,直到提交为止。可以避免脏读,但是,不可重复读和幻读仍会发生。 3.可重复读(repeated read):MySQL的默认隔离级别。此隔离级别不会看到其他事务提交后的结果。
基于124个网页-相关网页
...供了4种隔离等级: READ UNCOMMITTED(读未提交的数据) READ COMMITTED(读提交的数据) READ REPEATABLE(可重复读) SERIALIZABLE(可串行化) SQL Server中的隔离等级可以通过如下形式设置: SET TRANSACTION ISOLATION LEVEL READ COMMITTED...
基于16个网页-相关网页
不可重复读 Non-repeatable Read ; UnRepeatable Read ; Nonrepeatable read ; unrepeated read
可重复读取 Repeatable read ; No No No No
不可重复读取 nonrepeatable read ; Non-repeatable Reads
可重复读写光驱 rewritable CD ; Compact Disc Rewritable
可重复读级别 Repeatable read isolation
非可重复读取 Non-repeatable read
不可重复读问题 non-repeatable read problem
可重复的读 Repeatable Read
可重复读写 Read-Write
提交读,未提交读,可重复读,可串行读。
Read committed, Read uncommitted, Repeatable Read, Serializable.
比如,读取只读的查找表不需要可重复读级别,未提交读级别就足够了。
For example, reading from a read - only look up table doesn t require repeatable read, and uncommitted read is sufficient.
在相同事务下对“可重复读取”区域内数据的多次请求的结果是相同的,但能够带来更好的应用吞吐量。
With the "Repeatable Read" data region fetch requests issued multiple times within the same transaction will always produce the same result yielding better application throughput.
应用推荐