只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-12-14 21:20 牙疼的小猫 阅读(1) 评论(0) 推荐(0)
摘要: Oracle文档:db block gets: Accesses to the current image of a blockconsistent gets: Accesses to a read-consistent image of a blockphysical reads: Number 阅读全文
posted @ 2018-12-14 11:34 牙疼的小猫 阅读(673) 评论(0) 推荐(0)
摘要: 一致性读的现象 例如,表T上一行的name字段值原来为A。现在在会话1下,将之改为B(未提交),接着,还在会话1下,select该行的name字段的值,结果为B。而接下来,在会话2下,select该行的name字段的值,结果为A(这就是一致性读)。 接着,在会话1下,输入commit,再在会话2下, 阅读全文
posted @ 2018-12-14 10:50 牙疼的小猫 阅读(179) 评论(0) 推荐(0)